Merge pull request #585 from pampersrocker/fbxLoadingFix

Fixes random crash when loading fbx files
pull/588/head
Kim Kulling 2015-06-20 12:03:42 +02:00
commit daabf4bf86
1 changed files with 3 additions and 3 deletions

View File

@ -151,9 +151,9 @@ void FBXImporter::InternReadFile( const std::string& pFile,
// streaming for its output data structures so the net win with // streaming for its output data structures so the net win with
// streaming input data would be very low. // streaming input data would be very low.
std::vector<char> contents; std::vector<char> contents;
contents.resize(stream->FileSize()); contents.resize(stream->FileSize()+1);
stream->Read( &*contents.begin(), 1, contents.size()-1 );
stream->Read(&*contents.begin(),contents.size(),1); contents[ contents.size() - 1 ] = 0;
const char* const begin = &*contents.begin(); const char* const begin = &*contents.begin();
// broadphase tokenizing pass in which we identify the core // broadphase tokenizing pass in which we identify the core