From d2ddcdc1a2250d044ac7fc2c0585bad7234c08aa Mon Sep 17 00:00:00 2001 From: John Ferlan Date: Mon, 11 Feb 2019 21:12:11 -0500 Subject: [PATCH] phyp: Resolve memory leak in phypStorageVolCreateXML MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The @spdef would be leaked in the normal path. Signed-off-by: John Ferlan Reviewed-by: Ján Tomko --- src/phyp/phyp_driver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/phyp/phyp_driver.c b/src/phyp/phyp_driver.c index cac5642afd..6e2fff8ac2 100644 --- a/src/phyp/phyp_driver.c +++ b/src/phyp/phyp_driver.c @@ -2031,6 +2031,7 @@ phypStorageVolCreateXML(virStoragePoolPtr pool, goto err; VIR_FREE(key); + virStoragePoolDefFree(spdef); return vol;