scripts/kallsyms: Enable error messages while hush up unnecessary warnings
authorJean Sacren <sakiwit@gmail.com>
Sat, 11 Sep 2010 05:13:33 +0000 (23:13 -0600)
committerMichal Marek <mmarek@suse.cz>
Wed, 29 Sep 2010 14:18:27 +0000 (16:18 +0200)
As no error was handled, we wouldn't be able to know when an error does
occur. The fix preserves error messages while it doesn't let unnecessary
compiling warnings show up.

Signed-off-by: Jean Sacren <sakiwit@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
scripts/kallsyms.c

index e3902fb..60dd3eb 100644 (file)
@@ -107,12 +107,8 @@ static int read_symbol(FILE *in, struct sym_entry *s)
 
        rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str);
        if (rc != 3) {
-               if (rc != EOF) {
-                       /* skip line. sym is used as dummy to
-                        * shut of "warn_unused_result" warning.
-                        */
-                       sym = fgets(str, 500, in);
-               }
+               if (rc != EOF && fgets(str, 500, in) == NULL)
+                       fprintf(stderr, "Read error or end of file.\n");
                return -1;
        }