CVE-2022-50646
BaseFortify
Publication date: 2025-12-09
Last updated on: 2025-12-09
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| hp | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a possible memory leak in the Linux kernel's hpsa driver. Specifically, in the function hpsa_init_one(), if the alloc_percpu() call fails, the code jumps to a cleanup section that frees some allocated memory (h) but neglects to free a related field (h->reply_map), causing a memory leak. The fix involves properly freeing both h->reply_map and h to prevent the leak.
How can this vulnerability impact me? :
The impact of this vulnerability is a potential memory leak in the Linux kernel's hpsa driver. Over time, this could lead to increased memory usage and possibly degrade system performance or stability if the leak occurs repeatedly.