(xundump): Rev. 1.44 broke ef_load(). Fix.

This commit is contained in:
Markus Armbruster 2006-02-09 18:34:57 +00:00
parent 524fe1aa50
commit 10096cbf98

View file

@ -647,6 +647,11 @@ xundump(FILE *fp, char *file, int expected_table)
free(fldidx);
free(fldca);
/* Skip empty lines so that callers can easily check for EOF */
while ((ch = skipfs(fp)) == '\n')
lineno++;
ungetc(ch, fp);
return type;
}