From 7598688466960427890036590239565364310171 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Thu, 6 Jul 2023 13:40:52 -0400 Subject: Expose function "pure" flag to api and typesystem --- python/debuginfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/debuginfo.py') diff --git a/python/debuginfo.py b/python/debuginfo.py index 6e179ab8..d95657c6 100644 --- a/python/debuginfo.py +++ b/python/debuginfo.py @@ -325,7 +325,7 @@ class DebugInfo(object): for i in range(0, count.value): if functions[i].type: - function_type = _types.Type(core.BNNewTypeReference(functions[i].type)) + function_type = _types.Type.create(core.BNNewTypeReference(functions[i].type)) else: function_type = None -- cgit v1.3.1