mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
x86: kvm: remove NULL check before kfree
kfree can handle NULL pointer as its argument. According to coccinelle isnullfree check, remove NULL check before kfree operation. Signed-off-by: Dongliang Mu <mudongliangabcd@gmail.com> Message-Id: <20220614133458.147314-1-dzm91@hust.edu.cn> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
943dfea8f1
commit
e20918f6d1
@ -236,8 +236,7 @@ again:
|
||||
raw_spin_unlock(&b->lock);
|
||||
|
||||
/* A dummy token might be allocated and ultimately not used. */
|
||||
if (dummy)
|
||||
kfree(dummy);
|
||||
kfree(dummy);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user