diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-06-15 00:41:57 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-07-01 02:16:56 -0400 |
| commit | 3072843062601906835958414219133286732764 (patch) | |
| tree | 7d556e6e33527488a71c924a52acbf8b1ef18c35 /python/lowlevelil.py | |
| parent | 7324918658716641308584907268533128968017 (diff) | |
Python: Fix copy_to for LowLevelILOperation.LLIL_REG_STACK_FREE_REL
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index b05be56c..80fb32b4 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -3975,7 +3975,7 @@ class LowLevelILFunction: return dest.reg_stack_free_reg(expr.dest, loc) if expr.operation == LowLevelILOperation.LLIL_REG_STACK_FREE_REL: expr: LowLevelILRegStackFreeRel - return dest.reg_stack_free_top_relative(expr.stack, expr.dest, loc) + return dest.reg_stack_free_top_relative(expr.stack, sub_expr_handler(expr.dest), loc) if expr.operation == LowLevelILOperation.LLIL_FLAG: expr: LowLevelILFlag return dest.flag(expr.src, loc) |
