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
+2 -2
View File
@@ -67,7 +67,7 @@ bool RageFile::Open( const RString& path, int mode )
int error;
m_File = FILEMAN->Open( path, mode, error );
if( m_File == NULL )
if( m_File == nullptr )
{
SetError( strerror(error) );
return false;
@@ -78,7 +78,7 @@ bool RageFile::Open( const RString& path, int mode )
void RageFile::Close()
{
if( m_File == NULL )
if( m_File == nullptr )
return;
delete m_File;
if( m_Mode & WRITE )