From 6a602affedb4760206a0a4d74b16afc371ed9e42 Mon Sep 17 00:00:00 2001 From: "Dr. Chat" Date: Mon, 4 May 2015 18:15:57 -0500 Subject: [PATCH] Don't parse loader export table for now (since it's referenced to with an exact address) --- src/xenia/kernel/util/xex2.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xenia/kernel/util/xex2.cc b/src/xenia/kernel/util/xex2.cc index 19104c445..416b24286 100644 --- a/src/xenia/kernel/util/xex2.cc +++ b/src/xenia/kernel/util/xex2.cc @@ -876,6 +876,7 @@ int xe_xex2_load_pe(xe_xex2_ref xex) { xex->sections->push_back(section); } + /* if (header->export_table_offset) { // This table is located inside of the PE (for some reason) xe_xex2_export_table *table = (xe_xex2_export_table *)xex->memory->TranslateVirtual(xex->header.loader_info.export_table); @@ -889,6 +890,7 @@ int xe_xex2_load_pe(xe_xex2_ref xex) { table->ordOffset[i] = xe::load_and_swap(&table->ordOffset[i]); } } + */ // DumpTLSDirectory(pImageBase, pNTHeader, (PIMAGE_TLS_DIRECTORY32)0); // DumpExportsSection(pImageBase, pNTHeader);