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.