Browse Source

Remove unused start_pos argument

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

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

@@ -35,7 +35,7 @@ def read_cstring(
     return ""
 
 
-def _reorder_vfns_windows_estimate(symbols: list[Symbol], start_pos: int) -> list[Symbol]:
+def _reorder_vfns_windows_estimate(symbols: list[Symbol]) -> list[Symbol]:
     # reorders a given subclass-level slice of linux symbols to reflect windows ordering
     name_buckets = collections.defaultdict(list)
     for n, symbol in enumerate(symbols):
@@ -306,7 +306,7 @@ class VtableDisambiguator(angr.Analysis):
                     # __cxa_pure_virtual returns None here; we still add it to the vtable slice
                     pass
                 class_vfns.append(sym)
-            vt_out.extend(_reorder_vfns_windows_estimate(class_vfns, vt_low))
+            vt_out.extend(_reorder_vfns_windows_estimate(class_vfns))
 
         return vt_out