fixed saving reference to global_symbol_table in executable loader

This commit is contained in:
Anton Lydike 2021-04-18 19:29:51 +02:00
parent a1b9cf7f22
commit 8b4ba276a8

View File

@ -257,7 +257,7 @@ class LoadedExecutable:
self.sections_by_name = dict()
self.symbols = dict()
self.exported_symbols = dict()
self.global_symbol_table = dict()
self.global_symbol_table = global_symbol_table
curr = base_addr
for sec in exe.sections.values():