Update DumpOBJ.cc

This commit is contained in:
MikeW50 2018-03-25 15:27:58 -06:00 committed by GitHub
parent d23267469a
commit 096d5b589c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -437,14 +437,16 @@ if (disp)
for (i = 0; i < disp; ++i)
fgetc(f);
if (version == 0) loadname[0] = 0;
if (version == 0)
loadname[0] = 0;
else {
for (i = 0; i < 10; ++i) /* read the load segment name */
loadname[i] = fgetc(f);
loadname[10] = (char) 0;
}
len = lablen;
if (!len) len = fgetc(f); /* read the code segment name */
if (!len)
len = fgetc(f); /* read the code segment name */
for (i = 0; i < len; ++i)
segname[i] = fgetc(f);
segname[len] = (char) 0;