Module: wine Branch: master Commit: 2097387e04ab2a86c3289b9bead0abea5fca949d URL: http://source.winehq.org/git/wine.git/?a=commit;h=2097387e04ab2a86c3289b9bea...
Author: Huw Davies huw@codeweavers.com Date: Thu Sep 18 09:35:07 2008 +0100
inetcomm: Make variable static to fix crash on process detach.
---
dlls/inetcomm/inetcomm_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/inetcomm/inetcomm_main.c b/dlls/inetcomm/inetcomm_main.c index 579b05f..1b346bf 100644 --- a/dlls/inetcomm/inetcomm_main.c +++ b/dlls/inetcomm/inetcomm_main.c @@ -37,7 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(inetcomm);
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { - IMimeInternational *international; + static IMimeInternational *international;
TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);