The big NULL replacement party part 2.

This may take a bit. Trying to do this by operator/command.
This commit is contained in:
Jason Felds
2013-05-03 23:11:42 -04:00
parent 9f24627bf9
commit ba59dd1656
174 changed files with 6644 additions and 6644 deletions
+3 -3
View File
@@ -235,12 +235,12 @@ namespace
do {
{
pLib = dlopen( NULL, RTLD_LAZY );
if( pLib == NULL )
if( pLib == nullptr )
break;
g_CondattrSetclock = (CONDATTR_SET_CLOCK) dlsym( pLib, "pthread_condattr_setclock" );
if( g_CondattrSetclock == NULL )
if( g_CondattrSetclock == nullptr )
break;
}
@@ -305,7 +305,7 @@ EventImpl_Pthreads::~EventImpl_Pthreads()
#if defined(HAVE_PTHREAD_COND_TIMEDWAIT)
bool EventImpl_Pthreads::Wait( RageTimer *pTimeout )
{
if( pTimeout == NULL )
if( pTimeout == nullptr )
{
pthread_cond_wait( &m_Cond, &m_pParent->mutex );
return true;