In the Linux kernel, the following vulnerability has been resolved:
Input: appletouch - initialize work before device registration
Syzbot has reported warning in __flush_work(). This warning is caused by
work->func == NULL, which means missing work initialization.
This may happen, since input_dev->close() calls
cancel_work_sync(&dev->work), but dev->work initalization happens _after_
input_register_device() call.
So this patch moves dev->work initialization before registering input
device
References
Configurations
Configuration 1 (hide)
|
History
No history.
Information
Published : 2024-02-27 10:15
Updated : 2024-04-10 18:02
NVD link : CVE-2021-46932
Mitre link : CVE-2021-46932
CVE.ORG link : CVE-2021-46932
JSON object : View
Products Affected
linux
- linux_kernel
CWE
CWE-665
Improper Initialization