CVE-2022-50484
BaseFortify
Publication date: 2025-10-04
Last updated on: 2025-10-06
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| 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 potential memory leak in the Linux kernel's ALSA usb-audio driver. When the driver fails to allocate memory for a USB Request Block (URB) or buffer due to insufficient memory (-ENOMEM), it should release all previously allocated resources. However, if the failure occurs in the middle of allocating URBs for a synchronous endpoint, some partially allocated URBs might not be released because a counter tracking allocated URBs (ep->nurbs) is still zero. The fix involves setting this counter before the allocation loop so that the error handler correctly releases all allocated URBs.
How can this vulnerability impact me? :
This vulnerability can lead to memory leaks in the Linux kernel when using the ALSA usb-audio driver. Memory leaks can degrade system performance over time, potentially causing increased memory usage and instability, which might result in system slowdowns or crashes.