From 3072843062601906835958414219133286732764 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Sun, 15 Jun 2025 00:41:57 -0400 Subject: Python: Fix copy_to for LowLevelILOperation.LLIL_REG_STACK_FREE_REL --- python/lowlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/lowlevelil.py') 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) -- cgit v1.3.1