[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20111002202255.GA6991@elgon.mountain>
Date: Sun, 2 Oct 2011 23:22:55 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: Linus Walleij <linus.walleij@...aro.org>
Cc: linux-kernel@...r.kernel.org, kernel-janitors@...r.kernel.org
Subject: [patch] pinctrl: double free on error path in pinctrl_register()
This is duplicated in the error handling after we go to out_err.
Signed-off-by: Dan Carpenter <dan.carpenter@...cle.com>
diff --git a/drivers/pinctrl/core.c b/drivers/pinctrl/core.c
index f9263b2..8416a59 100644
--- a/drivers/pinctrl/core.c
+++ b/drivers/pinctrl/core.c
@@ -559,8 +559,6 @@ struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
ret = device_register(&pctldev->dev);
if (ret != 0) {
pr_err("error in device registration\n");
- put_device(&pctldev->dev);
- kfree(pctldev);
goto out_err;
}
dev_set_drvdata(&pctldev->dev, pctldev);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists