From: Peter Krempa Date: Thu, 6 May 2021 12:15:31 +0000 (+0200) Subject: virDomainIOThreadIDDefParseXML: Refactor cleanup X-Git-Tag: v7.4.0-rc1~193 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=351f2b10deee1ea010f19be384fa66fdf450638d;p=thirdparty%2Flibvirt.git virDomainIOThreadIDDefParseXML: Refactor cleanup Automatically free 'iothrid' and remove all the cleanup cruft. Signed-off-by: Peter Krempa Reviewed-by: Michal Privoznik --- diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index baf5d31606..78775bb2b3 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -17010,21 +17010,14 @@ virDomainIdmapDefParseXML(xmlXPathContextPtr ctxt, static virDomainIOThreadIDDef * virDomainIOThreadIDDefParseXML(xmlNodePtr node) { - virDomainIOThreadIDDef *iothrid; - - iothrid = g_new0(virDomainIOThreadIDDef, 1); + g_autoptr(virDomainIOThreadIDDef) iothrid = g_new0(virDomainIOThreadIDDef, 1); if (virXMLPropUInt(node, "id", 10, VIR_XML_PROP_REQUIRED | VIR_XML_PROP_NONZERO, &iothrid->iothread_id) < 0) - goto error; - - return iothrid; + return NULL; - error: - virDomainIOThreadIDDefFree(iothrid); - iothrid = NULL; - return iothrid; + return g_steal_pointer(&iothrid); }