summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/savedata_archive.cpp
diff options
context:
space:
mode:
authorKloen <kloen@outlawkiwi.com>2017-01-29 17:41:19 +0100
committerKloen <kloen@outlawkiwi.com>2017-01-29 21:50:25 +0100
commitf352a741d3b404f244d878f38d1f1d43250447d3 (patch)
tree952ac6e18ec4b0d446f2e60db0e3162e09c2aa02 /src/core/file_sys/savedata_archive.cpp
parentcore: fix archive_sdmc.cpp warnings about unhandled enumeration value on OSX (diff)
downloadyuzu-f352a741d3b404f244d878f38d1f1d43250447d3.tar
yuzu-f352a741d3b404f244d878f38d1f1d43250447d3.tar.gz
yuzu-f352a741d3b404f244d878f38d1f1d43250447d3.tar.bz2
yuzu-f352a741d3b404f244d878f38d1f1d43250447d3.tar.lz
yuzu-f352a741d3b404f244d878f38d1f1d43250447d3.tar.xz
yuzu-f352a741d3b404f244d878f38d1f1d43250447d3.tar.zst
yuzu-f352a741d3b404f244d878f38d1f1d43250447d3.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/savedata_archive.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/file_sys/savedata_archive.cpp b/src/core/file_sys/savedata_archive.cpp
index f2e6a06bc..f540c4a93 100644
--- a/src/core/file_sys/savedata_archive.cpp
+++ b/src/core/file_sys/savedata_archive.cpp
@@ -57,6 +57,8 @@ ResultVal<std::unique_ptr<FileBackend>> SaveDataArchive::OpenFile(const Path& pa
FileUtil::CreateEmptyFile(full_path);
}
break;
+ case PathParser::FileFound:
+ break; // Expected 'success' case
}
FileUtil::IOFile file(full_path, mode.write_flag ? "r+b" : "rb");
@@ -91,6 +93,8 @@ ResultCode SaveDataArchive::DeleteFile(const Path& path) const {
case PathParser::NotFound:
LOG_ERROR(Service_FS, "File not found %s", full_path.c_str());
return ERROR_FILE_NOT_FOUND;
+ case PathParser::FileFound:
+ break; // Expected 'success' case
}
if (FileUtil::Delete(full_path)) {
@@ -139,6 +143,8 @@ static ResultCode DeleteDirectoryHelper(const Path& path, const std::string& mou
case PathParser::FileFound:
LOG_ERROR(Service_FS, "Unexpected file or directory %s", full_path.c_str());
return ERROR_UNEXPECTED_FILE_OR_DIRECTORY;
+ case PathParser::DirectoryFound:
+ break; // Expected 'success' case
}
if (deleter(full_path)) {
@@ -182,6 +188,8 @@ ResultCode SaveDataArchive::CreateFile(const FileSys::Path& path, u64 size) cons
case PathParser::FileFound:
LOG_ERROR(Service_FS, "%s already exists", full_path.c_str());
return ERROR_FILE_ALREADY_EXISTS;
+ case PathParser::NotFound:
+ break; // Expected 'success' case
}
if (size == 0) {
@@ -225,6 +233,8 @@ ResultCode SaveDataArchive::CreateDirectory(const Path& path) const {
case PathParser::FileFound:
LOG_ERROR(Service_FS, "%s already exists", full_path.c_str());
return ERROR_DIRECTORY_ALREADY_EXISTS;
+ case PathParser::NotFound:
+ break; // Expected 'success' case
}
if (FileUtil::CreateDir(mount_point + path.AsString())) {
@@ -269,6 +279,8 @@ ResultVal<std::unique_ptr<DirectoryBackend>> SaveDataArchive::OpenDirectory(
case PathParser::FileFound:
LOG_ERROR(Service_FS, "Unexpected file in path %s", full_path.c_str());
return ERROR_UNEXPECTED_FILE_OR_DIRECTORY;
+ case PathParser::DirectoryFound:
+ break; // Expected 'success' case
}
auto directory = std::make_unique<DiskDirectory>(full_path);