Double Free in Linux
CVE-2026-64377
In the Linux kernel, the following vulnerability has been resolved: cpufreq: qcom-cpufreq-hw: Fix possible double free qcom_cpufreq.data is allocated with devm_kzalloc() in probe() as an array of per-domain data. qcom_cpufreq_hw_cpu_init() stores a pointer to one element of this array in policy->driver_data. qcom_cpufreq_hw_cpu_exit() currently calls kfree() on policy->driver_data. This is not valid because the memory is devm-managed. For the first domain, this can free the devm-managed allocation while the devres entry is still active, leading to a possible double free when the platform device is later detached. For other domains, the pointer may refer to an element inside the array rather than the allocation base. Remove the kfree(data) call and let devres release qcom_cpufreq.data. This issue was found by a static analysis tool I am developing.
Vulnerability class: Double Free
EPSS: 0.002 (6.3th percentile) — read the EPSS interpretation.
CVSS v3 metric
CVSS v3 base score 7.8 (High). Vector: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H.
Affected products
- Linux — versions 7.2-rc1, 054a3ef683a176a509cc9b37f762029aae942495, 7.2
- Linux Linux_kernel
Weakness classification (CWE)
References
Frequently asked questions
- What is CVE-2026-64377?
- CVE-2026-64377 is a high-severity vulnerability in Linux, classified under Double Free. CVSS score: 7.8/10. Published 2026-07-25.
- How severe is CVE-2026-64377?
- High severity. CVSS v3 base score is 7.8 out of 10.