Since we VIR_ALLOC_N to *values, the VIR_FREE should be done likewise
Signed-off-by: John Ferlan <jferlan(a)redhat.com>
---
src/util/virconf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/util/virconf.c b/src/util/virconf.c
index a41f896..ee54072 100644
--- a/src/util/virconf.c
+++ b/src/util/virconf.c
@@ -1016,7 +1016,7 @@ int virConfGetValueStringList(virConfPtr conf,
return -1;
if (cval->str &&
VIR_STRDUP((*values)[0], cval->str) < 0) {
- VIR_FREE(values);
+ VIR_FREE(*values);
return -1;
}
break;
--
2.5.5