From 67472f3feb129461b29ad9d969dc7a7eb6bb7173 Mon Sep 17 00:00:00 2001 From: Alexander Gessler Date: Mon, 8 Apr 2013 19:37:08 +0200 Subject: [PATCH] - remove self-assignment in MD5Loader.cpp --- code/MD5Loader.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/code/MD5Loader.cpp b/code/MD5Loader.cpp index cd6f6a155..858cdcacf 100644 --- a/code/MD5Loader.cpp +++ b/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;