diff options
author | Boris BREZILLON <boris.brezillon@free-electrons.com> | 2015-09-13 18:14:43 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-22 14:43:22 -0700 |
commit | 43c20144a4b4bd84d49bc1f5819481db9c000b34 (patch) | |
tree | 70fa67f439244e9dea3db6a95814182c7d42b71c | |
parent | 1f58388f5997f960598a1a899313c9cb970d50dd (diff) | |
download | lwn-43c20144a4b4bd84d49bc1f5819481db9c000b34.tar.gz lwn-43c20144a4b4bd84d49bc1f5819481db9c000b34.zip |
mtd: nand: sunxi: fix sunxi_nand_chips_cleanup()
commit 8e375ccda31ccc73b087134e263c48d2114534f4 upstream.
The sunxi_nand_chips_cleanup() function is missing a call to list_del()
which generates a double free error.
Reported-by: Priit Laes <plaes@plaes.org>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Fixes: 1fef62c1423b ("mtd: nand: add sunxi NAND flash controller support")
Tested-by: Priit Laes <plaes@plaes.org>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/mtd/nand/sunxi_nand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/sunxi_nand.c b/drivers/mtd/nand/sunxi_nand.c index 6f93b2990d25..4f67bbe30fe5 100644 --- a/drivers/mtd/nand/sunxi_nand.c +++ b/drivers/mtd/nand/sunxi_nand.c @@ -1312,6 +1312,7 @@ static void sunxi_nand_chips_cleanup(struct sunxi_nfc *nfc) node); nand_release(&chip->mtd); sunxi_nand_ecc_cleanup(&chip->nand.ecc); + list_del(&chip->node); } } |