mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-12-26 08:01:52 +01:00
OSFatal on failed find export
This commit is contained in:
parent
db3fe907ef
commit
b9064883a2
@ -51,9 +51,10 @@ bool doRelocation(std::vector<RelocationData> &relocData, relocation_trampolin_e
|
|||||||
}
|
}
|
||||||
rplHandle = moduleCache.at(rplName);
|
rplHandle = moduleCache.at(rplName);
|
||||||
uint32_t functionAddress = 0;
|
uint32_t functionAddress = 0;
|
||||||
|
|
||||||
OSDynLoad_FindExport(rplHandle, isData, functionName.c_str(), (void **) &functionAddress);
|
OSDynLoad_FindExport(rplHandle, isData, functionName.c_str(), (void **) &functionAddress);
|
||||||
if (functionAddress == 0) {
|
if (functionAddress == 0) {
|
||||||
DEBUG_FUNCTION_LINE("Failed to find function\n");
|
OSFatal_printf("Failed to find export %s of %s", functionName.c_str(), rplName.c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!ElfUtils::elfLinkOne(curReloc.getType(), curReloc.getOffset(), curReloc.getAddend(), (uint32_t) curReloc.getDestination(), functionAddress, tramp_data, tramp_length, RELOC_TYPE_IMPORT)) {
|
if (!ElfUtils::elfLinkOne(curReloc.getType(), curReloc.getOffset(), curReloc.getAddend(), (uint32_t) curReloc.getDestination(), functionAddress, tramp_data, tramp_length, RELOC_TYPE_IMPORT)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user