Commit 49d8b4c0 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

ntdll: Init retv to FALSE so in case of exception the trace shows the failure.

parent 5ca17f6d
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment