handle type-less v1 library files

This commit is contained in:
Kelvin Sherlock 2014-04-16 18:06:13 -04:00
parent ebab9328f6
commit c0b590a5f2
1 changed files with 4 additions and 0 deletions

View File

@ -447,6 +447,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;
}