MIssing check for ptr == NULL at line 227 in Registry.cpp

This commit is contained in:
Don BURNS
2003-11-05 04:58:18 +00:00
parent d56ef40d7d
commit 4e8992d8c1

View File

@@ -224,6 +224,7 @@ void Registry::initLibraryFilePathList()
if( !(ptr = getenv( "LD_LIBRARYN32_PATH" )))
ptr = getenv( "LD_LIBRARY_PATH" );
if( ptr )
{
convertStringPathIntoFilePathList(ptr,_libraryFilePath);
}