From caca6196fc41bee89d56f188d0818cce0b1d6af6 Mon Sep 17 00:00:00 2001 From: Sasha Szpakowski Date: Thu, 17 Oct 2024 20:56:48 -0300 Subject: [PATCH] make sure non-app common paths are canonicalized. --- src/modules/filesystem/physfs/Filesystem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/filesystem/physfs/Filesystem.cpp b/src/modules/filesystem/physfs/Filesystem.cpp index a06b1c670..b174a2646 100644 --- a/src/modules/filesystem/physfs/Filesystem.cpp +++ b/src/modules/filesystem/physfs/Filesystem.cpp @@ -701,6 +701,7 @@ std::string Filesystem::getFullCommonPath(CommonPath path) #endif + fullPaths[path] = canonicalizeRealPath(fullPaths[path].c_str()); return fullPaths[path]; }