Fix double //

This commit is contained in:
Tomas Jakobsson 2018-02-10 11:35:24 +01:00
parent b7679bae6c
commit e6df25074b

View file

@ -62,7 +62,7 @@ namespace Utils
// ignore "." and ".." // ignore "." and ".."
if((name != ".") && (name != "..")) if((name != ".") && (name != ".."))
{ {
std::string fullName(path + "/" + name); std::string fullName(getGenericPath(path + "/" + name));
contentList.push_back(fullName); contentList.push_back(fullName);
if(_recursive && isDirectory(fullName)) if(_recursive && isDirectory(fullName))