diff options
Diffstat (limited to 'runtime/oat_file.cc')
-rw-r--r-- | runtime/oat_file.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/oat_file.cc b/runtime/oat_file.cc index 72c0cea1a0..e78a097174 100644 --- a/runtime/oat_file.cc +++ b/runtime/oat_file.cc @@ -898,7 +898,7 @@ bool ElfOatFile::ElfFileOpen(File* file, DCHECK(!error_msg->empty()); return false; } - bool loaded = elf_file_->Load(executable, low_4gb, error_msg); + bool loaded = elf_file_->Load(file, executable, low_4gb, error_msg); DCHECK(loaded || !error_msg->empty()); return loaded; } |