]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu_capabilities: Don't leak @str in virQEMUCapsLoadMachines()
authorMichal Privoznik <mprivozn@redhat.com>
Tue, 9 Feb 2021 15:29:39 +0000 (16:29 +0100)
committerMichal Privoznik <mprivozn@redhat.com>
Wed, 10 Feb 2021 08:38:49 +0000 (09:38 +0100)
If parsing "maxCpus" attribute of <machine/> element fails an
error is printed but the corresponding string is not freed. While
it is very unlikely to happen (parsed XML is not user provided
and we are the ones generating it), it is possible. Instead of
freeing the variable in the error path explicitly, let's declare
it as g_autofree. And while I'm at it, let's bring it into the
loop where it's used.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
src/qemu/qemu_capabilities.c

index d41b4a475359995ab8b4600f1c2044ab66dd0d49..4a6ef2e383ef5f2e280998f59fdc8d88a4334828 100644 (file)
@@ -4012,7 +4012,6 @@ virQEMUCapsLoadMachines(virQEMUCapsAccelPtr caps,
 {
     g_autofree char *xpath = g_strdup_printf("./machine[@type='%s']", typeStr);
     g_autofree xmlNodePtr *nodes = NULL;
-    char *str = NULL;
     size_t i;
     int n;
 
@@ -4029,6 +4028,8 @@ virQEMUCapsLoadMachines(virQEMUCapsAccelPtr caps,
     caps->machineTypes = g_new0(virQEMUCapsMachineType, caps->nmachineTypes);
 
     for (i = 0; i < n; i++) {
+        g_autofree char *str = NULL;
+
         if (!(caps->machineTypes[i].name = virXMLPropString(nodes[i], "name"))) {
             virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                            _("missing machine name in QEMU capabilities cache"));