2 matches found
UBUNTU-CVE-2022-50830
In the Linux kernel, the following vulnerability has been resolved: auxdisplay: hd44780: Fix potential memory leak in hd44780remove hd44780probe allocates a memory chunk for hd with kzalloc and makes "lcd-drvdata-hd44780" point to it. When we call hd44780remove, we should release all relevant...
CVE-2022-50830
The CVE-2022-50830 issue affects the Linux kernel’s auxdisplay hd44780 driver. In hd44780_probe(), kzalloc() allocates memory for hd and assigns lcd->drvdata->hd44780. The vulnerability arises because hd44780_remove() fails to release lcd->drvdata->hd44780, causing a memory leak. The ...