Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1370853 > unrolled thread

[PATCH] mtd: gpmi: fix raw_buffer pointer double free issue

Started byHan Xu <han.xu@nxp.com>
First post2016-04-04 22:20 +0200
Last post2016-04-04 22:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] mtd: gpmi: fix raw_buffer pointer double free issue Han Xu <han.xu@nxp.com> - 2016-04-04 22:20 +0200

#1370853 — [PATCH] mtd: gpmi: fix raw_buffer pointer double free issue

FromHan Xu <han.xu@nxp.com>
Date2016-04-04 22:20 +0200
Subject[PATCH] mtd: gpmi: fix raw_buffer pointer double free issue
Message-ID<rkhgu-7h5-11@gated-at.bofh.it>
fix the raw_buffer pointer double free issue found by coverify.

Signed-off-by: Han Xu <han.xu@nxp.com>
---
 drivers/mtd/nand/gpmi-nand/gpmi-nand.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
index 8122c69..dcb60b0 100644
--- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
+++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
@@ -797,6 +797,7 @@ static void gpmi_free_dma_buffer(struct gpmi_nand_data *this)
 
 	this->cmd_buffer	= NULL;
 	this->data_buffer_dma	= NULL;
+	this->raw_buffer	= NULL;
 	this->page_buffer_virt	= NULL;
 	this->page_buffer_size	=  0;
 }
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web