]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mtd: parsers: Fix memory leak in mtd_parser_tplink_safeloader_parse()
authorZilin Guan <zilin@seu.edu.cn>
Thu, 22 Jan 2026 13:09:50 +0000 (13:09 +0000)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Thu, 22 Jan 2026 14:08:29 +0000 (15:08 +0100)
The function mtd_parser_tplink_safeloader_parse() allocates buf via
mtd_parser_tplink_safeloader_read_table(). If the allocation for
parts[idx].name fails inside the loop, the code jumps to the err_free
label without freeing buf, leading to a memory leak.

Fix this by freeing the temporary buffer buf in the err_free label.

Compile tested only. Issue found using a prototype static analysis tool
and code review.

Fixes: 00a3588084be ("mtd: parsers: add TP-Link SafeLoader partitions table parser")
Signed-off-by: Zilin Guan <zilin@seu.edu.cn>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/mtd/parsers/tplink_safeloader.c

index e358a029dc70cf6cacb3bbd06b7892f052698f78..4fcaf92d22e4fe87a168a2eed2ba9fa56bbc41e2 100644 (file)
@@ -116,6 +116,7 @@ static int mtd_parser_tplink_safeloader_parse(struct mtd_info *mtd,
        return idx;
 
 err_free:
+       kfree(buf);
        for (idx -= 1; idx >= 0; idx--)
                kfree(parts[idx].name);
 err_free_parts: