Merge pull request #4409 from valentinvanelslande/cro

ldr_ro: change std::tie to structured binding
This commit is contained in:
Pengfei Zhu 2018-11-08 21:39:56 +08:00 committed by GitHub
commit 39cbd4166c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -353,9 +353,7 @@ void RO::LoadCRO(Kernel::HLERequestContext& ctx, bool link_on_load_bug_fix) {
slot->memory_synchronizer.ResizeMemoryBlock(cro_address, cro_buffer_ptr, fix_size);
}
VAddr exe_begin;
u32 exe_size;
std::tie(exe_begin, exe_size) = cro.GetExecutablePages();
auto [exe_begin, exe_size] = cro.GetExecutablePages();
if (exe_begin) {
result = process->vm_manager.ReprotectRange(exe_begin, exe_size,
Kernel::VMAPermission::ReadExecute);