MAINT-6636 Mesh upload was failing from a folder with a diacritic character in the name

master
andreykproductengine 2016-08-25 15:40:33 +03:00
parent 0279d5d986
commit c4e9fe9fe5
2 changed files with 2 additions and 1 deletions

View File

@ -200,6 +200,7 @@ Ansariel Hiller
MAINT-6511
MAINT-6612
MAINT-6637
MAINT-6636
Aralara Rajal
Arare Chantilly
CHUIBUG-191

View File

@ -1071,7 +1071,7 @@ bool LLDAELoader::OpenFile(const std::string& filename)
std::string LLDAELoader::preprocessDAE(std::string filename)
{
// Open a DAE file for some preprocessing (like removing space characters in IDs), see MAINT-5678
std::ifstream inFile;
llifstream inFile;
inFile.open(filename.c_str(), std::ios_base::in);
std::stringstream strStream;
strStream << inFile.rdbuf();