Removed too strict header check to enable execution of handcoded PE

exes.
This commit is contained in:
Marcus Meissner 2003-12-31 00:12:31 +00:00 committed by Alexandre Julliard
parent 5f5034ff3b
commit 492451464a
1 changed files with 0 additions and 6 deletions

View File

@ -192,12 +192,6 @@ enum binary_type MODULE_GetBinaryType( HANDLE hfile )
* This will tell us if there is more header information
* to read or not.
*/
/* But before we do we will make sure that header
* structure encompasses the "Offset to extended header"
* field.
*/
if (header.mz.e_lfanew < sizeof(IMAGE_DOS_HEADER))
return BINARY_DOS;
if (SetFilePointer( hfile, header.mz.e_lfanew, NULL, SEEK_SET ) == -1)
return BINARY_DOS;
if (!ReadFile( hfile, magic, sizeof(magic), &len, NULL ) || len != sizeof(magic))