diff options
author | Peter Stuge <peter@stuge.se> | 2009-01-12 21:00:35 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-01-12 21:00:35 +0000 |
commit | fdd9000f62a76eb173ae3e16760ca9e4fe14de74 (patch) | |
tree | 76d5371b6a5d6eaa6e0600a8e3d5a5cdcf98554b /layout.c | |
parent | 434a38acce23e7d3e8e113cb895b89b83f4b8992 (diff) | |
download | flashrom-fdd9000f62a76eb173ae3e16760ca9e4fe14de74.zip flashrom-fdd9000f62a76eb173ae3e16760ca9e4fe14de74.tar.gz |
Check return value of fscanf()/fwrite()/fread()
Fix build error on distros with warn_unused_result attributes in glibc.
Corresponding to flashrom svn r378 and coreboot v2 svn r3857.
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Yul Rottmann <yulrottmann@bitel.net>
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -146,8 +146,8 @@ int read_romlayout(char *name) while (!feof(romlayout)) { char *tstr1, *tstr2; - fscanf(romlayout, "%s %s\n", tempstr, - rom_entries[romimages].name); + if (2 != fscanf(romlayout, "%s %s\n", tempstr, rom_entries[romimages].name)) + continue; #if 0 // fscanf does not like arbitrary comments like that :( later if (tempstr[0] == '#') { |