AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72245

UNKNOWN · CVSS N/A

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

CyberRota Analysis

AI-Generated

A vulnerability in the Linux kernel affects the host1x device management, where a reference leak occurs if the host1x_device_parse_dt() function fails after device initialization. This flaw can lead to improper memory management and potential resource exhaustion. Linux kernel maintainers and developers working with GPU drivers should prioritize this issue to ensure proper device lifecycle management and prevent potential system instability.

CVE
CVE-2026-72245
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: gpu: host1x: Fix device reference leak in host1x_device_parse_dt() error path After device_initialize(), the embedded struct device in struct host1x_device should be released through the device core with put_device(). In host1x_device_add(), if host1x_device_parse_dt() fails, the current error path frees the object directly with kfree(device). That bypasses the normal device lifetime handling and leaks the reference held on the embedded struct device. The issue was identified by a static analysis tool I developed and confirmed by manual review. Fix this by using put_device() in the host1x_device_parse_dt() failure path.