mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
cast null to int in check for compatibility
This commit is contained in:
parent
84ed551ceb
commit
062596c881
@ -887,7 +887,7 @@ void *CDbgMemAlloc::Expand_NoLongerSupported( void *pMem, size_t nSize )
|
||||
//-----------------------------------------------------------------------------
|
||||
void CDbgMemAlloc::PushAllocDbgInfo( const char *pFileName, int nLine )
|
||||
{
|
||||
if ( g_DbgInfoStack == (void*)NULL )
|
||||
if ( g_DbgInfoStack == (int)NULL )
|
||||
{
|
||||
g_DbgInfoStack = (DbgInfoStack_t *)DebugAlloc( sizeof(DbgInfoStack_t) * DBG_INFO_STACK_DEPTH );
|
||||
g_nDbgInfoStackDepth = -1;
|
||||
@ -901,7 +901,7 @@ void CDbgMemAlloc::PushAllocDbgInfo( const char *pFileName, int nLine )
|
||||
|
||||
void CDbgMemAlloc::PopAllocDbgInfo()
|
||||
{
|
||||
if ( g_DbgInfoStack == (void*)NULL )
|
||||
if ( g_DbgInfoStack == (int)NULL )
|
||||
{
|
||||
g_DbgInfoStack = (DbgInfoStack_t *)DebugAlloc( sizeof(DbgInfoStack_t) * DBG_INFO_STACK_DEPTH );
|
||||
g_nDbgInfoStackDepth = -1;
|
||||
@ -922,7 +922,7 @@ uint32 CDbgMemAlloc::GetDebugInfoSize()
|
||||
|
||||
void CDbgMemAlloc::SaveDebugInfo( void *pvDebugInfo )
|
||||
{
|
||||
if ( g_DbgInfoStack == (void*)NULL )
|
||||
if ( g_DbgInfoStack == (int)NULL )
|
||||
{
|
||||
g_DbgInfoStack = (DbgInfoStack_t *)DebugAlloc( sizeof(DbgInfoStack_t) * DBG_INFO_STACK_DEPTH );
|
||||
g_nDbgInfoStackDepth = -1;
|
||||
@ -935,7 +935,7 @@ void CDbgMemAlloc::SaveDebugInfo( void *pvDebugInfo )
|
||||
|
||||
void CDbgMemAlloc::RestoreDebugInfo( const void *pvDebugInfo )
|
||||
{
|
||||
if ( g_DbgInfoStack == (void*)NULL )
|
||||
if ( g_DbgInfoStack == (int)NULL )
|
||||
{
|
||||
g_DbgInfoStack = (DbgInfoStack_t *)DebugAlloc( sizeof(DbgInfoStack_t) * DBG_INFO_STACK_DEPTH );
|
||||
g_nDbgInfoStackDepth = -1;
|
||||
@ -976,7 +976,7 @@ void CDbgMemAlloc::GetActualDbgInfo( const char *&pFileName, int &nLine )
|
||||
return;
|
||||
#endif
|
||||
|
||||
if ( g_DbgInfoStack == (void*)NULL )
|
||||
if ( g_DbgInfoStack == (int)NULL )
|
||||
{
|
||||
g_DbgInfoStack = (DbgInfoStack_t *)DebugAlloc( sizeof(DbgInfoStack_t) * DBG_INFO_STACK_DEPTH );
|
||||
g_nDbgInfoStackDepth = -1;
|
||||
|
Loading…
Reference in New Issue
Block a user