summaryrefslogtreecommitdiff
path: root/workflow.cpp
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-06-30 13:46:52 -0400
committerGlenn Smith <glenn@vector35.com>2025-07-01 23:23:25 -0400
commit7871953325024282191116771022201477045749 (patch)
tree2e55b48cd8c2152ebeae85d1f617c9287628c762 /workflow.cpp
parent3369388279087234793382558126227582393316 (diff)
Python: Collect and pass mappings when copying MLIL functions
Diffstat (limited to 'workflow.cpp')
-rw-r--r--workflow.cpp3
1 files changed, 2 insertions, 1 deletions
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<LowLevelILFunction> lowLevelIL)
void AnalysisContext::SetMediumLevelILFunction(Ref<MediumLevelILFunction> mediumLevelIL)
{
- BNSetMediumLevelILFunction(m_object, mediumLevelIL->m_object);
+ // TODO: Mappings FFI
+ BNSetMediumLevelILFunction(m_object, mediumLevelIL->m_object, nullptr, 0, nullptr, 0);
}