SEPTEMBER 20, 2026
Live Feed
Back to database
Case File

CVE-2026-80658

UNKNOWN · CVSS N/A EPSS 0.17%

Source: NVD + CISA KEV + EPSS · Published 2026-08-28 · Last synced 2026-09-20

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel affects the Rockchip DRM driver, specifically in the dw_dp_remove() function, where a null pointer dereference can occur if the component binding process fails. This could lead to system instability or crashes when the driver attempts to access uninitialized data. Organizations utilizing Linux systems with Rockchip hardware should prioritize addressing this issue to ensure system reliability and prevent potential disruptions.

CVE
CVE-2026-80658
Severity
UNKNOWN
CVSS
N/A
EPSS
0.17%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: drm/rockchip: dw_dp: Fix null-ptr-deref in dw_dp_remove() Attempting to access driver data in the platform driver ->remove() callback may lead to a null pointer dereference since there is no guaranty that the component ->bind() callback invoking platform_set_drvdata() was executed. A common scenario is when Rockchip DRM driver didn't manage to run component_bind_all() because of an (unrelated) error causing early return from rockchip_drm_bind(). Drop the unnecessary call to platform_get_drvdata() and, instead, reference the target device structure via platform_device.