Re: [libvirt] [PATCH 5/5] esxVMX_GatherSCSIControllers: avoid NULL dereference

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



2010/4/14 Jim Meyering <jim@xxxxxxxxxxxx>:
> From: Jim Meyering <meyering@xxxxxxxxxx>
>
> * src/esx/esx_vmx.c (esxVMX_GatherSCSIControllers): Do not dereference
> a NULL disk->driverName.  We already detect this condition in another
> case.  Check for it here, too.
> ---
>  src/esx/esx_vmx.c |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/src/esx/esx_vmx.c b/src/esx/esx_vmx.c
> index 647e720..aed5cc1 100644
> --- a/src/esx/esx_vmx.c
> +++ b/src/esx/esx_vmx.c
> @@ -570,11 +570,12 @@ esxVMX_GatherSCSIControllers(virDomainDefPtr def, char *virtualDev[4],
>
>         if (virtualDev[controller] == NULL) {
>             virtualDev[controller] = disk->driverName;
> -        } else if (STRCASENEQ(virtualDev[controller], disk->driverName)) {
> +        } else if (disk->driverName == NULL
> +                   || STRCASENEQ(virtualDev[controller], disk->driverName)) {

Style nitpick: I'd like to have the || at the end of the previous
line, like in the rest of this file.

>             ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
>                       _("Inconsistent driver usage ('%s' is not '%s') on SCSI "
>                         "controller index %d"), virtualDev[controller],
> -                      disk->driverName, controller);
> +                      disk->driverName ? disk->driverName : "?", controller);
>             return -1;
>         }
>     }
> --
> 1.7.1.rc1.248.gcefbb
>

ACK.

Matthias

--
libvir-list mailing list
libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list


[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]