render / rpms / libvirt

Forked from rpms/libvirt 5 months ago
Clone
a41c76
From 97d7066d53be18a9638d28217e2a4216fa422a53 Mon Sep 17 00:00:00 2001
a41c76
Message-Id: <97d7066d53be18a9638d28217e2a4216fa422a53@dist-git>
a41c76
From: Michal Privoznik <mprivozn@redhat.com>
a41c76
Date: Fri, 21 Feb 2020 14:32:11 +0100
a41c76
Subject: [PATCH] virDomainNetDefClear: Free @persistent name
a41c76
MIME-Version: 1.0
a41c76
Content-Type: text/plain; charset=UTF-8
a41c76
Content-Transfer-Encoding: 8bit
a41c76
a41c76
The persistent alias name @persistent is allocated in
a41c76
virDomainNetDefParseXML() but never freed.
a41c76
a41c76
==119642== 22 bytes in 2 blocks are definitely lost in loss record 178 of 671
a41c76
==119642==    at 0x483579F: malloc (vg_replace_malloc.c:309)
a41c76
==119642==    by 0x58F89F1: xmlStrndup (in /usr/lib64/libxml2.so.2.9.9)
a41c76
==119642==    by 0x4BA3B74: virXMLPropString (virxml.c:520)
a41c76
==119642==    by 0x4BDB0C5: virDomainNetDefParseXML (domain_conf.c:11876)
a41c76
==119642==    by 0x4BF9EF4: virDomainDefParseXML (domain_conf.c:21196)
a41c76
==119642==    by 0x4BFCD5B: virDomainDefParseNode (domain_conf.c:21943)
a41c76
==119642==    by 0x4BFCC36: virDomainDefParse (domain_conf.c:21901)
a41c76
==119642==    by 0x4BFCCCB: virDomainDefParseFile (domain_conf.c:21924)
a41c76
==119642==    by 0x114A9D: testCompareXMLToArgv (qemuxml2argvtest.c:452)
a41c76
==119642==    by 0x13894F: virTestRun (testutils.c:143)
a41c76
==119642==    by 0x11F46E: mymain (qemuxml2argvtest.c:1316)
a41c76
==119642==    by 0x13A60E: virTestMain (testutils.c:839
a41c76
a41c76
Fixes: fb0509d06ac57434c2edbd81ee63deb32a0e598a
a41c76
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
a41c76
Reviewed-by: Ján Tomko <jtomko@redhat.com>
a41c76
(cherry picked from commit 2ab278ec758b09398ea335626a41b453cdda6da7)
a41c76
Signed-off-by: Ján Tomko <jtomko@redhat.com>
a41c76
https://bugzilla.redhat.com/show_bug.cgi?id=1805742
a41c76
Message-Id: <d64d26b106c91220bdcb95cd3dd90229fe449cd2.1582291906.git.jtomko@redhat.com>
a41c76
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
a41c76
---
a41c76
 src/conf/domain_conf.c | 1 +
a41c76
 1 file changed, 1 insertion(+)
a41c76
a41c76
diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
a41c76
index 5c11f49463..8a5f14d6cb 100644
a41c76
--- a/src/conf/domain_conf.c
a41c76
+++ b/src/conf/domain_conf.c
a41c76
@@ -2439,6 +2439,7 @@ virDomainNetDefClear(virDomainNetDefPtr def)
a41c76
 
a41c76
     VIR_FREE(def->backend.tap);
a41c76
     VIR_FREE(def->backend.vhost);
a41c76
+    VIR_FREE(def->teaming.persistent);
a41c76
     VIR_FREE(def->virtPortProfile);
a41c76
     VIR_FREE(def->script);
a41c76
     VIR_FREE(def->domain_name);
a41c76
-- 
a41c76
2.25.1
a41c76