Skip to content

Commit 3072843

Browse files
committed
Python: Fix copy_to for LowLevelILOperation.LLIL_REG_STACK_FREE_REL
1 parent 7324918 commit 3072843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/lowlevelil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3975,7 +3975,7 @@ def copy_expr_to(
39753975
return dest.reg_stack_free_reg(expr.dest, loc)
39763976
if expr.operation == LowLevelILOperation.LLIL_REG_STACK_FREE_REL:
39773977
expr: LowLevelILRegStackFreeRel
3978-
return dest.reg_stack_free_top_relative(expr.stack, expr.dest, loc)
3978+
return dest.reg_stack_free_top_relative(expr.stack, sub_expr_handler(expr.dest), loc)
39793979
if expr.operation == LowLevelILOperation.LLIL_FLAG:
39803980
expr: LowLevelILFlag
39813981
return dest.flag(expr.src, loc)

0 commit comments

Comments
 (0)