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/mediumlevelil.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/mediumlevelil.py') diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 0474fcea..becc22da 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -3082,6 +3082,8 @@ class MediumLevelILFunction: return result finally: core.BNFreeVariableList(core_variables) + elif self.il_form in [FunctionGraphType.MediumLevelILFunctionGraph, FunctionGraphType.MappedMediumLevelILFunctionGraph]: + return self.ssa_form.ssa_vars return [] -- cgit v1.3.1