From 3113507260902721807936823520410048671513 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Thu, 6 Mar 2025 15:42:53 -0500 Subject: Python: Fix LLILFunction.add_label_map --- 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 2324efa4..f6911048 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -5584,7 +5584,7 @@ class LowLevelILFunction: :rtype: ExpressionIndex """ label_list = (ctypes.POINTER(core.BNLowLevelILLabel) * len(labels))() - value_list = (ctypes.POINTER(ctypes.c_ulonglong) * len(labels))() + value_list = (ctypes.c_ulonglong * len(labels))() for i, (key, value) in enumerate(labels.items()): value_list[i] = key label_list[i] = value.handle -- cgit v1.3.1