fix return NULL instead of false

This commit is contained in:
deepzero 2014-01-15 08:50:28 +01:00 committed by cypherpunk
parent 138c2fc16a
commit 6aa395b57b
1 changed files with 2 additions and 2 deletions

View File

@ -12437,7 +12437,7 @@ __declspec(dllexport) void* TITCALL InitDebug(char* szFileName, char* szCommandL
}
else
{
return(false);
return NULL;
}
}
__declspec(dllexport) void* TITCALL InitDebugW(wchar_t* szFileName, wchar_t* szCommandLine, wchar_t* szCurrentFolder)
@ -12526,7 +12526,7 @@ __declspec(dllexport) void* TITCALL InitDLLDebug(char* szFileName, bool ReserveM
}
else
{
return(false);
return NULL;
}
}
__declspec(dllexport) void* TITCALL InitDLLDebugW(wchar_t* szFileName, bool ReserveModuleBase, wchar_t* szCommandLine, wchar_t* szCurrentFolder, LPVOID EntryCallBack)