[libvirt] [PATCH] umlAutostartDomain: avoid NULL-deref upon virGetLastError failure

Eric Blake eblake at redhat.com
Mon May 17 14:51:14 UTC 2010


On 05/17/2010 06:38 AM, Jim Meyering wrote:
> Another...
> 
>>From 09579adb73f04c5b940ad28cdfc242cff0726e0e Mon Sep 17 00:00:00 2001
> From: Jim Meyering <meyering at redhat.com>
> Date: Mon, 17 May 2010 14:38:14 +0200
> Subject: [PATCH] umlAutostartDomain: avoid NULL-deref upon virGetLastError failure
> 
> * src/uml/uml_driver.c (umlAutostartDomain): Handle a NULL return
> from virGetLastError.
> ---
>  src/uml/uml_driver.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/src/uml/uml_driver.c b/src/uml/uml_driver.c
> index 63fe808..ffb87c8 100644
> --- a/src/uml/uml_driver.c
> +++ b/src/uml/uml_driver.c
> @@ -157,7 +157,7 @@ umlAutostartDomain(void *payload, const char *name ATTRIBUTE_UNUSED, void *opaqu
>          if (umlStartVMDaemon(data->conn, data->driver, vm) < 0) {
>              virErrorPtr err = virGetLastError();
>              VIR_ERROR(_("Failed to autostart VM '%s': %s"),
> -                      vm->def->name, err->message);
> +                      vm->def->name, err ? err->message : "");

That looks awkward to end with a trailing space.  Might it be better to use:

 err ? err->message : _("unknown reason")

At any rate, ACK that this fixes a potential NULL deref.

-- 
Eric Blake   eblake at redhat.com    +1-801-349-2682
Libvirt virtualization library http://libvirt.org

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 619 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20100517/a77ccf06/attachment-0001.sig>


More information about the libvir-list mailing list