CVE-2022-50547
BaseFortify
Publication date: 2025-10-07
Last updated on: 2026-02-26
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 4.10 (inc) to 4.14.303 (inc) |
| linux | kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-401 | The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse. |
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 solo6x10 media driver. Specifically, if the device_register() function returns an error during the solo_sysfs_init() initialization, the name allocated by dev_set_name() is not properly freed. The fix involves calling put_device() to release the device reference, allowing the allocated name to be freed correctly during kobject_cleanup().
How can this vulnerability impact me? :
This vulnerability can lead to a memory leak in the Linux kernel when the solo6x10 media driver fails to register a device properly. Over time, this could cause increased memory usage and potentially degrade system performance or stability.