CVE-2023-53264
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
16/09/2025
Last modified:
16/09/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
clk: imx: clk-imxrt1050: fix memory leak in imxrt1050_clocks_probe<br />
<br />
Use devm_of_iomap() instead of of_iomap() to automatically<br />
handle the unused ioremap region. If any error occurs, regions allocated by<br />
kzalloc() will leak, but using devm_kzalloc() instead will automatically<br />
free the memory using devm_kfree().<br />
<br />
Also, fix error handling of hws by adding unregister_hws label, which<br />
unregisters remaining hws when iomap failed.