mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02: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:
committed by
Paolo Bonzini
parent
943dfea8f1
commit
e20918f6d1
@@ -236,8 +236,7 @@ again:
|
|||||||
raw_spin_unlock(&b->lock);
|
raw_spin_unlock(&b->lock);
|
||||||
|
|
||||||
/* A dummy token might be allocated and ultimately not used. */
|
/* A dummy token might be allocated and ultimately not used. */
|
||||||
if (dummy)
|
kfree(dummy);
|
||||||
kfree(dummy);
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake);
|
EXPORT_SYMBOL_GPL(kvm_async_pf_task_wake);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user