From: Christophe Jaillet Date: Sun, 6 Aug 2017 12:55:01 +0000 (+0200) Subject: mtd: physmap_of: Fix resources leak in 'of_flash_probe()' X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=871e7c01ca55fdc714691206f041e48f695f444c;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git mtd: physmap_of: Fix resources leak in 'of_flash_probe()' If 'of_flash_probe_gemini()' or 'of_flash_probe_versatile()' fail, we must reslease some resources, as already done in all error handling paths in this function. Signed-off-by: Christophe JAILLET Signed-off-by: Boris Brezillon --- diff --git a/drivers/mtd/maps/physmap_of_core.c b/drivers/mtd/maps/physmap_of_core.c index 1343c34092ca..b1bd4faecfb2 100644 --- a/drivers/mtd/maps/physmap_of_core.c +++ b/drivers/mtd/maps/physmap_of_core.c @@ -235,10 +235,10 @@ static int of_flash_probe(struct platform_device *dev) err = of_flash_probe_gemini(dev, dp, &info->list[i].map); if (err) - return err; + goto err_out; err = of_flash_probe_versatile(dev, dp, &info->list[i].map); if (err) - return err; + goto err_out; err = -ENOMEM; info->list[i].map.virt = ioremap(info->list[i].map.phys,