[PATCH 1/2] mtd: cmdlinepart: fix skipping zero sized partition
Christopher Cordahi
christophercordahi at nanometrics.ca
Sun Dec 16 19:59:29 EST 2012
Decrement index i after skipping a zero sized partition. On next loop
iteration, the index will be the same as before, but the data will be
new as it was moved when earlier partition was skipped.
Signed-off-by: Christopher Cordahi <christophercordahi at nanometrics.ca>
---
drivers/mtd/cmdlinepart.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/mtd/cmdlinepart.c b/drivers/mtd/cmdlinepart.c
index c533f27..c1efb4c 100644
--- a/drivers/mtd/cmdlinepart.c
+++ b/drivers/mtd/cmdlinepart.c
@@ -337,6 +337,7 @@ static int parse_cmdline_partitions(struct mtd_info *master,
part->num_parts--;
memmove(&part->parts[i], &part->parts[i + 1],
sizeof(*part->parts) * (part->num_parts - i));
+ i--;
continue;
}
--
1.7.1
More information about the linux-mtd
mailing list