|
@@ -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
|
|
|
|