Ignore:
Timestamp:
Sep 9, 2010, 4:54:17 PM (15 years ago)
Author:
ydario
Message:

LoadLibraryExA: return only for LX binaries, allow execution for PE binaries. see changeset:21408.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/wprocess.cpp

    r21408 r21445  
    11121112        dprintf(("KERNEL32: LoadLibraryExA(%s, 0x%x, 0x%x): DosLoadModule (%s) failed. LastError=%d",
    11131113                 lpszLibFile, hFile, dwFlags, szModname, GetLastError()));
    1114         return NULL;
     1114        // YD return now for OS/2 dll only
     1115        if (fPE != ERROR_SUCCESS)
     1116            return NULL;
    11151117    }
    11161118    else
Note: See TracChangeset for help on using the changeset viewer.