|
@@ -477,7 +477,12 @@ static int process_mapfile(FILE *outfp, char *fpath)
|
|
|
|
|
|
print_mapping_table_prefix(outfp);
|
|
print_mapping_table_prefix(outfp);
|
|
|
|
|
|
- line_num = 0;
|
|
|
|
|
|
+ /* Skip first line (header) */
|
|
|
|
+ p = fgets(line, n, mapfp);
|
|
|
|
+ if (!p)
|
|
|
|
+ goto out;
|
|
|
|
+
|
|
|
|
+ line_num = 1;
|
|
while (1) {
|
|
while (1) {
|
|
char *cpuid, *version, *type, *fname;
|
|
char *cpuid, *version, *type, *fname;
|
|
|
|
|
|
@@ -521,8 +526,8 @@ static int process_mapfile(FILE *outfp, char *fpath)
|
|
fprintf(outfp, "},\n");
|
|
fprintf(outfp, "},\n");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+out:
|
|
print_mapping_table_suffix(outfp);
|
|
print_mapping_table_suffix(outfp);
|
|
-
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|