Fix ambiguous else warning.
This commit is contained in:
parent
4ab79f9619
commit
a8f8bef098
|
@ -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 )
|
||||
{
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in New Issue