We need to free "overwrite_flags" before returning.

Signed-off-by: Dan Carpenter <dan.carpen...@oracle.com>

diff --git a/drivers/memstick/core/ms_block.c b/drivers/memstick/core/ms_block.c
index a8e8915..1f9d5cf 100644
--- a/drivers/memstick/core/ms_block.c
+++ b/drivers/memstick/core/ms_block.c
@@ -1408,8 +1408,10 @@ static int msb_ftl_scan(struct msb_data *msb)
                        msb_mark_block_used(msb, pba);
                        msb_erase_block(msb, pba);
                        continue;
-               } else if (error)
+               } else if (error) {
+                       kfree(overwrite_flags);
                        return error;
+               }
 
                lba = be16_to_cpu(extra.logical_address);
                managment_flag = extra.management_flag;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to