Commit 788109c1 authored by Colin Ian King's avatar Colin Ian King Committed by Paolo Bonzini
Browse files

KVM: remove redundant assignment to variable r



The variable r is being assigned  with a value that is never read
and it is being updated later with a new value.  The initialization is
redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Message-Id: <20200410113526.13822-1-colin.king@canonical.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 56a87e5d
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -3160,7 +3160,6 @@ out_free1:
	case KVM_SET_REGS: {
		struct kvm_regs *kvm_regs;

		r = -ENOMEM;
		kvm_regs = memdup_user(argp, sizeof(*kvm_regs));
		if (IS_ERR(kvm_regs)) {
			r = PTR_ERR(kvm_regs);