dect
/
linux-2.6
Archived
13
0
Fork 0

KVM: Fix KVM_SET_SIGNAL_MASK with arg == NULL

When the user passed in a NULL mask pass this on from the ioctl
handler.

Found by gcc 4.6's new warnings.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
Andi Kleen 2010-06-10 13:10:47 +02:00 committed by Avi Kivity
parent 3b5d132186
commit 376d41ff26
1 changed files with 1 additions and 1 deletions

View File

@ -1547,7 +1547,7 @@ out_free2:
goto out;
p = &sigset;
}
r = kvm_vcpu_ioctl_set_sigmask(vcpu, &sigset);
r = kvm_vcpu_ioctl_set_sigmask(vcpu, p);
break;
}
case KVM_GET_FPU: {