From 7871953325024282191116771022201477045749 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Mon, 30 Jun 2025 13:46:52 -0400 Subject: Python: Collect and pass mappings when copying MLIL functions --- workflow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'workflow.cpp') diff --git a/workflow.cpp b/workflow.cpp index 13c69136..83e7b142 100644 --- a/workflow.cpp +++ b/workflow.cpp @@ -100,7 +100,8 @@ void AnalysisContext::SetLowLevelILFunction(Ref lowLevelIL) void AnalysisContext::SetMediumLevelILFunction(Ref mediumLevelIL) { - BNSetMediumLevelILFunction(m_object, mediumLevelIL->m_object); + // TODO: Mappings FFI + BNSetMediumLevelILFunction(m_object, mediumLevelIL->m_object, nullptr, 0, nullptr, 0); } -- cgit v1.3.1