iwinfo: fix crash on parsing mtd (#15807)
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41675
This commit is contained in:
parent
0af20bbfc8
commit
1ecb74024b
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ int iwinfo_hardware_id_from_mtd(struct iwinfo_hardware_id *id)
|
|||
|
||||
while (fgets(buf, sizeof(buf), mtd) > 0)
|
||||
{
|
||||
if (fscanf(mtd, "mtd%d: %*x %x %127s", &off, &len, buf) < 3 ||
|
||||
if (fscanf(mtd, "mtd%d: %x %*x %127s", &off, &len, buf) < 3 ||
|
||||
(strcmp(buf, "\"boardconfig\"") && strcmp(buf, "\"EEPROM\"") &&
|
||||
strcmp(buf, "\"factory\"")))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue