Commit 8d051c81 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

ntdll: Avoid crash with WINEDEBUG=+snoop.

parent 22e94d0b
...@@ -650,7 +650,7 @@ void SNOOP_SetupDLL(HMODULE hmod) ...@@ -650,7 +650,7 @@ void SNOOP_SetupDLL(HMODULE hmod)
if (!init_done) init_debug_lists(); if (!init_done) init_debug_lists();
exports = RtlImageDirectoryEntryToData( hmod, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size32 ); exports = RtlImageDirectoryEntryToData( hmod, TRUE, IMAGE_DIRECTORY_ENTRY_EXPORT, &size32 );
if (!exports) return; if (!exports || !exports->NumberOfFunctions) return;
name = (char *)hmod + exports->Name; name = (char *)hmod + exports->Name;
size = size32; size = size32;
......
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