Browse Source

Use proper access of parent vtable

nosoop 10 months ago
parent
commit
53713681c7
1 changed files with 2 additions and 6 deletions
  1. 2 6
      src/smgdc/angr/vtable_disamb.py

+ 2 - 6
src/smgdc/angr/vtable_disamb.py

@@ -346,12 +346,8 @@ class VtableDisambiguator(angr.Analysis):
                     # HACK: some virtual destructors got optimized out and are represented by nullptrs
                     for parent_vt in self.superclass_map[vt]:
                         # HACK: in that case we try to match functions from the parent
-                        vptr = (
-                            self.loader.fast_memory_load_pointer(
-                                parent_vt.rebased_addr + (0x4 * n) + 0x8
-                            )
-                            or 0
-                        )
+                        pvptr_first, *_ = self.get_vfptrs_from_table(parent_vt)
+                        vptr = pvptr_first[n]
                         if vptr:
                             break