Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.10.0
-
None
-
None
-
Linux
Description
in file.cpp line 83
//////////////
std::string File::convertBackSlashes(const std::string& src) {
std::string::size_type pos = src.find('
');
if (pos == std::string::npos)
std::string mod(src);
while(pos != std::string::npos)
return mod;
}
//////////////
resolution should be "pos = mod.find("
");"
////////////
if the string has more than one "/" src.find return always the first "/" character occurence and the loop "become" infinite