CVE-2022-50088
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
18/06/2025
Last modified:
18/06/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
mm/damon/reclaim: fix potential memory leak in damon_reclaim_init()<br />
<br />
damon_reclaim_init() allocates a memory chunk for ctx with<br />
damon_new_ctx(). When damon_select_ops() fails, ctx is not released,<br />
which will lead to a memory leak.<br />
<br />
We should release the ctx with damon_destroy_ctx() when damon_select_ops()<br />
fails to fix the memory leak.