mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-27 11:20:40 +00:00
COMMON: Add missing escaping in Common::Path.
This commit is contained in:
parent
dea2468838
commit
395aa10644
@ -280,7 +280,7 @@ Path Path::joinComponents(const StringArray& c) {
|
||||
String res;
|
||||
|
||||
for (uint i = 0; i < c.size(); i++) {
|
||||
res += c[i];
|
||||
res += escapePath(c[i]);
|
||||
if (i + 1 < c.size())
|
||||
res += DIR_SEPARATOR;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user