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

This commit is contained in:
Christian Costa 2012-09-29 22:29:11 +02:00 committed by Alexandre Julliard
parent 5ca17f6d50
commit 49d8b4c039

View file

@ -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 */