AUGUST 22, 2026
Live Feed
Back to database
Case File

CVE-2026-68215

UNKNOWN · CVSS N/A EPSS 0.22%

Source: NVD + CISA KEV + EPSS · Published 2026-08-10 · Last synced 2026-08-22

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's handling of the si476x radio device, where a failure during the probe process does not properly unregister the V4L2 device, leading to potential resource leaks. This oversight could result in system instability or resource exhaustion, particularly in environments that rely on radio functionality. System administrators and developers working with Linux kernel modules, especially those involving media devices, should prioritize addressing this issue to ensure system reliability and performance.

CVE
CVE-2026-68215
Severity
UNKNOWN
CVSS
N/A
EPSS
0.22%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: media: radio-si476x: Unregister v4l2_device on probe failure si476x_radio_probe() registers radio->v4l2dev before allocating the V4L2 controls and before registering the video device. If any of those later steps fails, probe returns through the exit label after freeing only the control handler. A failed probe does not call si476x_radio_remove(), so the v4l2_device_unregister() there is not reached. This leaves the parent device reference taken by v4l2_device_register() behind on the error path. Unregister the V4L2 device in the probe error path after freeing the controls.