Fix ambiguous else warning.

This commit is contained in:
Kevin Holbrook 1999-04-18 09:33:20 +00:00 committed by Alexandre Julliard
parent 4ab79f9619
commit a8f8bef098
2 changed files with 6 additions and 0 deletions

View file

@ -116,16 +116,20 @@ static void MODULE_DoInitializeDLLs( WINE_MODREF *wm,
skip = TRUE;
if ( type == DLL_PROCESS_ATTACH )
{
if ( wm->flags & WINE_MODREF_PROCESS_ATTACHED )
skip = TRUE;
else
wm->flags |= WINE_MODREF_PROCESS_ATTACHED;
}
if ( type == DLL_PROCESS_DETACH )
{
if ( wm->flags & WINE_MODREF_PROCESS_DETACHED )
skip = TRUE;
else
wm->flags |= WINE_MODREF_PROCESS_DETACHED;
}
if ( !skip )
{

View file

@ -202,10 +202,12 @@ void PROCESS_CallUserSignalProc( UINT uCode, DWORD dwThreadOrProcessId, HMODULE
/* Get thread or process ID */
if ( dwThreadOrProcessId == 0 )
{
if ( uCode == USIG_THREAD_INIT || uCode == USIG_THREAD_EXIT )
dwThreadOrProcessId = GetCurrentThreadId();
else
dwThreadOrProcessId = GetCurrentProcessId();
}
/* Convert module handle to 16-bit */