CVE-2022-50848
BaseFortify
Publication date: 2025-12-30
Last updated on: 2025-12-31
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
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 dio driver during initialization (dio_init). If the device_register() function returns an error, the allocated device structure ('dev') and its name are not properly freed, leading to a memory leak. The fix involves adding a release function and calling put_device() in the error path to ensure that both the device and its name are correctly freed.
How can this vulnerability impact me? :
This vulnerability can cause a memory leak in the Linux kernel, which may lead to increased memory usage and potentially degrade system performance or stability over time if the error condition occurs frequently.