In the Linux kernel, the following vulnerability has been resolved:
pmdomain: mediatek: mfg: initialize prevo in mtkmfgattachdev()
mtkmfgattachdev() reads prevo on the first iteration of its loop, in "if (prevo && prevo->freq == o->freq)", before prevo is assigned at the end of the loop body. On that first iteration, evaluating prevo reads an indeterminate value. If it is non-NULL, the condition dereferences a stale or invalid pointer, potentially faulting or incorrectly skipping the first OPP.
Initialize prev_o to NULL. This matches the intent as well: there is no previous OPP to compare against on the first iteration.
Found with Clang's -Wconditional-uninitialized.
{
"osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/80xxx/CVE-2026-80751.json",
"cna_assigner": "Linux"
}