xen_driver: don't leak a parsed-config buffer

* src/xen/xen_driver.c (xenUnifiedDomainXMLFromNative): Also
free "conf" before returning.
This commit is contained in:
Jim Meyering 2010-01-18 18:02:17 +01:00
parent 77dd67087b
commit 8cfc4c9a03

View File

@ -1,7 +1,7 @@
/*
* xen_driver.c: Unified Xen driver.
*
* Copyright (C) 2007, 2008, 2009 Red Hat, Inc.
* Copyright (C) 2007-2010 Red Hat, Inc.
*
* See COPYING.LIB for the License of this software
*
@ -1199,6 +1199,8 @@ xenUnifiedDomainXMLFromNative(virConnectPtr conn,
cleanup:
virDomainDefFree(def);
if (conf)
virConfFree(conf);
return ret;
}