mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-12-27 08:31:51 +01:00
Return an error if OSDynLoad_Acquire fails
This commit is contained in:
parent
d943bd4c67
commit
33faeb03a5
@ -112,9 +112,13 @@ bool doRelocation(const std::vector<std::shared_ptr<ModuleData>> &moduleList,
|
|||||||
if (!usedRPls.contains(rplName)) {
|
if (!usedRPls.contains(rplName)) {
|
||||||
DEBUG_FUNCTION_LINE_VERBOSE("Acquire %s", rplName.c_str());
|
DEBUG_FUNCTION_LINE_VERBOSE("Acquire %s", rplName.c_str());
|
||||||
// Always acquire to increase refcount and make sure it won't get unloaded while we're using it.
|
// Always acquire to increase refcount and make sure it won't get unloaded while we're using it.
|
||||||
OSDynLoad_Acquire(rplName.c_str(), &rplHandle);
|
OSDynLoad_Error err = OSDynLoad_Acquire(rplName.c_str(), &rplHandle);
|
||||||
|
if (err != OS_DYNLOAD_OK) {
|
||||||
|
DEBUG_FUNCTION_LINE_ERR("Failed to acquire %s", rplName.c_str());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
// Keep track RPLs we are using.
|
// Keep track RPLs we are using.
|
||||||
// They will be released on exit in the AromaBaseModule
|
// They will be released on exit (See: AromaBaseModule)
|
||||||
usedRPls[rplName] = rplHandle;
|
usedRPls[rplName] = rplHandle;
|
||||||
} else {
|
} else {
|
||||||
DEBUG_FUNCTION_LINE_VERBOSE("Use from usedRPLs cache! %s", rplName.c_str());
|
DEBUG_FUNCTION_LINE_VERBOSE("Use from usedRPLs cache! %s", rplName.c_str());
|
||||||
|
Loading…
Reference in New Issue
Block a user