mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-26 19:44:50 +02:00
Add in linkage name code.
This commit is contained in:
@@ -479,7 +479,10 @@ class PdbReader:
|
||||
if name:
|
||||
if self._omap_mapping:
|
||||
address = self.omap_lookup(address)
|
||||
self.symbols[self.name_strip(name)] = {"address": address}
|
||||
stripped_name = self.name_strip(name)
|
||||
self.symbols[stripped_name] = {"address": address}
|
||||
if name != self.name_strip(name):
|
||||
self.symbols[stripped_name]["linkage_name"] = name
|
||||
offset += sym.length + 2 # Add on length itself
|
||||
|
||||
def read_pdb_info_stream(self):
|
||||
|
||||
Reference in New Issue
Block a user