tools/mtd-utils: fix a segfault in parsing the device table

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 42875
master
Felix Fietkau 10 years ago
parent 7cbdc57b40
commit b6be477299
  1. 11
      tools/mtd-utils/patches/100-sscanf_fix.patch

@ -0,0 +1,11 @@
--- a/mkfs.jffs2.c
+++ b/mkfs.jffs2.c
@@ -423,7 +423,7 @@ static int interpret_table_entry(struct
if (sscanf (line, "%" SCANF_PREFIX "s %c %lo %lu %lu %lu %lu %lu %lu %lu",
SCANF_STRING(name), &type, &mode, &uid, &gid, &major, &minor,
- &start, &increment, &count) < 0)
+ &start, &increment, &count) < 10)
{
return 1;
}
Loading…
Cancel
Save