mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 11:09:59 +00:00
loader: elf: Fix process initialization using ProgramMetadata default.
This commit is contained in:
parent
f0a7f05070
commit
68039addbc
1 changed files with 5 additions and 0 deletions
|
@ -398,6 +398,11 @@ AppLoader_ELF::LoadResult AppLoader_ELF::Load(Kernel::Process& process) {
|
||||||
Kernel::CodeSet codeset = elf_reader.LoadInto(base_address);
|
Kernel::CodeSet codeset = elf_reader.LoadInto(base_address);
|
||||||
const VAddr entry_point = codeset.entrypoint;
|
const VAddr entry_point = codeset.entrypoint;
|
||||||
|
|
||||||
|
// Setup the process code layout
|
||||||
|
if (process.LoadFromMetadata(FileSys::ProgramMetadata::GetDefault(), buffer.size()).IsError()) {
|
||||||
|
return {ResultStatus::ErrorNotInitialized, {}};
|
||||||
|
}
|
||||||
|
|
||||||
process.LoadModule(std::move(codeset), entry_point);
|
process.LoadModule(std::move(codeset), entry_point);
|
||||||
|
|
||||||
is_loaded = true;
|
is_loaded = true;
|
||||||
|
|
Loading…
Reference in a new issue