Re: [PATCH 2/3] conf: Fix off-by-one in virDomainDefGetVcpu

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

 



On Thu, Mar 10, 2016 at 10:03:52 +0100, Peter Krempa wrote:
> Cpus are indexed starting from '0' so the check was invalid.
> 
> Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1316384
> Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1316420
> ---
>  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 314a584..1aed318 100644
> --- a/src/conf/domain_conf.c
> +++ b/src/conf/domain_conf.c
> @@ -1405,7 +1405,7 @@ virDomainVcpuInfoPtr
>  virDomainDefGetVcpu(virDomainDefPtr def,
>                      unsigned int vcpu)
>  {
> -    if (vcpu > def->maxvcpus) {
> +    if (vcpu >= def->maxvcpus) {
>          virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
>                         _("vCPU '%u' is not present in domain definition"),
>                         vcpu);

ACK

Jirka

--
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]