ntdll: Init retv to FALSE so in case of exception the trace shows the failure.
This commit is contained in:
parent
5ca17f6d50
commit
49d8b4c039
|
@ -994,7 +994,7 @@ static NTSTATUS MODULE_InitDLL( WINE_MODREF *wm, UINT reason, LPVOID lpReserved
|
|||
NTSTATUS status = STATUS_SUCCESS;
|
||||
DLLENTRYPROC entry = wm->ldr.EntryPoint;
|
||||
void *module = wm->ldr.BaseAddress;
|
||||
BOOL retv = TRUE;
|
||||
BOOL retv = FALSE;
|
||||
|
||||
/* Skip calls for modules loaded with special load flags */
|
||||
|
||||
|
|
Loading…
Reference in New Issue