CVE-2023-53637
BaseFortify
Publication date: 2025-10-07
Last updated on: 2026-02-03
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.20 (inc) to 5.4.235 (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 memory leak in the Linux kernel's ov772x driver for media i2c devices. Specifically, during the ov772x_probe() function, if an error condition occurs (priv->hdl.error is set), the function skips freeing allocated resources by not calling v4l2_ctrl_handler_free(). As a result, memory allocated during initialization (v4l2_ctrl_handler_init() and v4l2_ctrl_new_std()) is not released, causing a memory leak.
How can this vulnerability impact me? :
This memory leak can cause the system to consume more memory over time when the ov772x driver is used, potentially leading to degraded system performance or exhaustion of memory resources. This can affect system stability and reliability, especially in environments where the ov772x device is frequently initialized or probed.