2 matches found
CVE-2026-45926
In the Linux kernel, the following vulnerability has been resolved: rust: pwm: Fix potential memory leak on init error When initializing a PWM chip using pwmchipalloc, the allocated device owns an initial reference that must be released on all error paths. If pinnedinit were to fail, the allocate...
CVE-2026-45926
In the Linux kernel PWM subsystem, CVE-2026-45926 fixes a memory leak on init error in pwmchip_alloc(). If __pinned_init() fails, the allocated pwm_chip could leak because error paths did not call pwmchip_put(). The patch ensures the initial reference is released on all error paths, preventing a ...