diff options
author | Lioncash <[email protected]> | 2018-10-14 21:41:58 -0400 |
---|---|---|
committer | Lioncash <[email protected]> | 2018-10-15 17:02:11 -0400 |
commit | bed872ed38e19d34c6c2e3d1a3d35a9f72e46970 (patch) | |
tree | 6533551afe9c5432fa8789a1517a97111d0041c6 /src/core/loader/nso.h | |
parent | bb9cf8a127baf83aa3ebdef5b17d9bdd69869b4a (diff) | |
download | yuzu-android-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.tar.gz yuzu-android-bed872ed38e19d34c6c2e3d1a3d35a9f72e46970.zip |
nso: Return an optional address from LoadModule
If a malformed NSO is attempted to be loaded, we shouldn't continue
onwards. We should be reporting an error and bailing out.
Diffstat (limited to 'src/core/loader/nso.h')
-rw-r--r-- | src/core/loader/nso.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/loader/nso.h b/src/core/loader/nso.h index d92897130..433306139 100644 --- a/src/core/loader/nso.h +++ b/src/core/loader/nso.h @@ -4,6 +4,7 @@ #pragma once +#include <optional> #include "common/common_types.h" #include "core/file_sys/patch_manager.h" #include "core/loader/linker.h" @@ -36,9 +37,9 @@ public: return IdentifyType(file); } - static VAddr LoadModule(const FileSys::VfsFile& file, VAddr load_base, - bool should_pass_arguments, - boost::optional<FileSys::PatchManager> pm = boost::none); + static std::optional<VAddr> LoadModule(const FileSys::VfsFile& file, VAddr load_base, + bool should_pass_arguments, + std::optional<FileSys::PatchManager> pm = {}); ResultStatus Load(Kernel::Process& process) override; }; |