Parcourir la source

- remove self-assignment in MD5Loader.cpp

Alexander Gessler il y a 12 ans
Parent
commit
67472f3feb
1 fichiers modifiés avec 0 ajouts et 1 suppressions
  1. 0 1
      code/MD5Loader.cpp

+ 0 - 1
code/MD5Loader.cpp

@@ -187,7 +187,6 @@ void MD5Importer::LoadFileIntoMemory (IOStream* file)
 	ai_assert(fileSize);
 
 	// allocate storage and copy the contents of the file to a memory buffer
-	pScene = pScene;
 	mBuffer = new char[fileSize+1];
 	file->Read( (void*)mBuffer, 1, fileSize);
 	iLineNumber = 1;