mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
[SystemSaveData] Return error when path is unsafe
This commit is contained in:
parent
80ebb353a5
commit
0ba4ffffab
1 changed files with 2 additions and 1 deletions
|
@ -145,7 +145,8 @@ HorizonResult SystemSaveDataArchive::deleteFile(const FSPath& path) {
|
|||
Rust::Result<DirectorySession, HorizonResult> SystemSaveDataArchive::openDirectory(const FSPath& path) {
|
||||
if (path.type == PathType::UTF16) {
|
||||
if (!isPathSafe<PathType::UTF16>(path)) {
|
||||
Helpers::panic("Unsafe path in SystemSaveData::OpenDirectory");
|
||||
Helpers::warn("Unsafe path in SystemSaveData::OpenDirectory");
|
||||
return Err(Result::FS::FileNotFoundAlt);
|
||||
}
|
||||
|
||||
fs::path p = IOFile::getAppData() / ".." / "SharedFiles" / "SystemSaveData";
|
||||
|
|
Loading…
Add table
Reference in a new issue