We need to initialize the relay debug lists for +snoop too.

This commit is contained in:
Alexandre Julliard 2003-10-09 19:52:23 +00:00
parent 947c61e4f7
commit 30b588955a
1 changed files with 2 additions and 1 deletions

View File

@ -42,6 +42,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(thunk);
WINE_DECLARE_DEBUG_CHANNEL(relay);
WINE_DECLARE_DEBUG_CHANNEL(snoop);
/*
* These are the 16-bit side WOW routines. They reside in wownt16.h
@ -112,7 +113,7 @@ BOOL WOWTHUNK_Init(void)
CALL32_CBClientEx_RetAddr =
MAKESEGPTR( codesel, (char*)CALL32_CBClientEx_Ret - (char*)Call16_Ret_Start );
if (TRACE_ON(relay)) RELAY16_InitDebugLists();
if (TRACE_ON(relay) || TRACE_ON(snoop)) RELAY16_InitDebugLists();
return TRUE;
}