AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74326

UNKNOWN · CVSS N/A

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's mt76 driver, specifically in the mt7921 component, where a resource leak occurs if the pcim_iomap_region() or devm_kmemdup() functions fail during the probe process. This oversight can lead to memory leaks and potential instability in systems utilizing this driver. Organizations using affected Linux distributions should prioritize patching to ensure system reliability and prevent resource exhaustion issues.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7921: fix resource leak in probe error path When pcim_iomap_region() or devm_kmemdup() fail, the code returns directly without cleaning up previously allocated resources: - mt76_device allocated by mt76_alloc_device() - pci irq vectors allocated by pci_alloc_irq_vectors() Fix this by jumping to the existing error cleanup path instead of returning directly.