Fix null check in Q3BSPFileImporter
Reverse the null condition, preventing invalid texture stream dereferencing. Fixes #380.pull/381/head
parent
49c9786b0a
commit
485aa8b39d
|
@ -651,7 +651,7 @@ bool Q3BSPFileImporter::importTextureFromArchive( const Q3BSP::Q3BSPModel *pMode
|
|||
std::string textureName, ext;
|
||||
if ( expandFile( pArchive, pTexture->strName, supportedExtensions, textureName, ext ) ) {
|
||||
IOStream *pTextureStream = pArchive->Open( textureName.c_str() );
|
||||
if ( !pTextureStream ) {
|
||||
if ( pTextureStream ) {
|
||||
size_t texSize = pTextureStream->FileSize();
|
||||
aiTexture *pTexture = new aiTexture;
|
||||
pTexture->mHeight = 0;
|
||||
|
|
Loading…
Reference in New Issue