|
@@ -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]:
|
|
|
|
|
|
name_buckets = collections.defaultdict(list)
|
|
|
for n, symbol in enumerate(symbols):
|
|
@@ -306,7 +306,7 @@ class VtableDisambiguator(angr.Analysis):
|
|
|
|
|
|
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
|
|
|
|