From f80fe07a3534cf2869d616aef12681bd83a00b0e Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Mon, 1 Nov 2021 23:37:09 -0400 Subject: Resolves #2681; Return the SSAFunction's version of .ssa_vars from the non-SSA forms (pass the call from *LevelILFunction to *LevelILSSAFunction) --- python/highlevelil.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/highlevelil.py') diff --git a/python/highlevelil.py b/python/highlevelil.py index 575fe025..e5b9311d 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -2434,6 +2434,8 @@ class HighLevelILFunction: return result finally: core.BNFreeVariableList(core_variables) + elif self.il_form == FunctionGraphType.HighLevelILFunctionGraph: + return self.ssa_form.ssa_vars return [] -- cgit v1.3.1