CyberRota Analysis
AI-GeneratedThe vulnerability affects the Linux kernel's MTD (Memory Technology Device) subsystem, specifically in the virt-concat functionality, where duplicate generated names are not properly freed, leading to potential memory leaks. This could result in resource exhaustion or denial of service, particularly in environments that heavily utilize MTD features. System administrators and developers working with Linux kernel-based systems should prioritize addressing this issue to ensure system stability and performance.
Original NVD Description
In the Linux kernel, the following vulnerability has been resolved: mtd: virt-concat: free duplicate generated name Every MTD registration runs mtd_virt_concat_create_join(). Once a virtual concat has already been registered, the function builds the same name again and takes the equal-name branch. That branch skips to the next item without freeing the newly allocated string. Free the temporary name before continuing.