[libvirt] [PATCH 2/4] conf: Fix libvirtd free() segfault if virDomainChrSourceDefNew(...) fails

Laine Stump laine at laine.org
Thu Feb 9 19:19:43 UTC 2017


On 02/09/2017 09:13 AM, Marc Hartmayer wrote:
> If virDomainChrSourceDefNew(xmlopt) fails, it will lead to free()ing
> the uninitialized pointer bus. The fix for this is to initialize bus
> with NULL.
>
> Signed-off-by: Marc Hartmayer <mhartmay at linux.vnet.ibm.com>
> Reviewed-by: Boris Fiuczynski <fiuczy at linux.vnet.ibm.com>
> Reviewed-by: Bjoern Walk <bwalk at linux.vnet.ibm.com>
> ---
>   src/conf/domain_conf.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
> index c06b128..ef883b5 100644
> --- a/src/conf/domain_conf.c
> +++ b/src/conf/domain_conf.c
> @@ -13307,7 +13307,7 @@ virDomainRedirdevDefParseXML(virDomainXMLOptionPtr xmlopt,
>   {
>       xmlNodePtr cur;
>       virDomainRedirdevDefPtr def;
> -    char *bus, *type = NULL;
> +    char *bus = NULL, *type = NULL;
>       int remaining;
>   
>       if (VIR_ALLOC(def) < 0)


ACK




More information about the libvir-list mailing list