From ffc810b7c7cad514fe362c5b42877bca7eee88b3 Mon Sep 17 00:00:00 2001 From: Pavel Hrdina Date: Sun, 9 Apr 2017 12:49:24 +0200 Subject: [PATCH] src: fix multiple resource leaks in loops All of the variables are filled inside a loop and therefore needs to be also freed in every cycle. Signed-off-by: Pavel Hrdina --- src/conf/node_device_conf.c | 9 +++++---- src/conf/storage_conf.c | 1 + src/util/virsysinfo.c | 2 ++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/conf/node_device_conf.c b/src/conf/node_device_conf.c index 7d0baa9d1a..330d5d92c5 100644 --- a/src/conf/node_device_conf.c +++ b/src/conf/node_device_conf.c @@ -1582,7 +1582,6 @@ virNodeDeviceDefParseXML(xmlXPathContextPtr ctxt, for (i = 0, m = 0; i < n; i++) { xmlNodePtr node = nodes[i]; char *tmp = virXMLPropString(node, "type"); - virNodeDevDevnodeType type; int val; if (!tmp) { @@ -1591,15 +1590,17 @@ virNodeDeviceDefParseXML(xmlXPathContextPtr ctxt, goto error; } - if ((val = virNodeDevDevnodeTypeFromString(tmp)) < 0) { + val = virNodeDevDevnodeTypeFromString(tmp); + + if (val < 0) { virReportError(VIR_ERR_CONFIG_UNSUPPORTED, _("unknown devnode type '%s'"), tmp); VIR_FREE(tmp); goto error; } - type = val; + VIR_FREE(tmp); - switch (type) { + switch ((virNodeDevDevnodeType)val) { case VIR_NODE_DEV_DEVNODE_DEV: def->devnode = (char*)xmlNodeGetContent(node); break; diff --git a/src/conf/storage_conf.c b/src/conf/storage_conf.c index fe0f0bcdc7..b66e67254a 100644 --- a/src/conf/storage_conf.c +++ b/src/conf/storage_conf.c @@ -471,6 +471,7 @@ virStoragePoolDefParseSource(xmlXPathContextPtr ctxt, port); goto cleanup; } + VIR_FREE(port); } } } diff --git a/src/util/virsysinfo.c b/src/util/virsysinfo.c index 8d3377c04e..650216d006 100644 --- a/src/util/virsysinfo.c +++ b/src/util/virsysinfo.c @@ -521,6 +521,8 @@ virSysinfoParseS390Processor(const char *base, virSysinfoDefPtr ret) &processor->processor_family, '=', '\n')) goto cleanup; + + VIR_FREE(procline); } result = 0;