Merge pull request #3 from ksherlock/patch_1

Support for type-less OMF V1 library files
This commit is contained in:
MikeW50 2018-03-25 15:21:44 -06:00 committed by GitHub
commit 988ff7929e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -454,6 +454,10 @@ if (version == 2) /* set the kind field */
kind = kind2;
else
kind = kind1;
if (ftype == 0 && version == 1 && (kind & 0x001F) == 0x08)
ftype = LIBFL;
return 0;
}