From a10b2f085b75e8681c6534c87a4c5b2ff4efe980 Mon Sep 17 00:00:00 2001 From: Brandon Miller Date: Thu, 29 Jan 2026 08:02:39 -0500 Subject: Fix Python exception in FunctionLifterContext --- python/architecture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/architecture.py') diff --git a/python/architecture.py b/python/architecture.py index 2d085d9e..c941af8c 100644 --- a/python/architecture.py +++ b/python/architecture.py @@ -480,10 +480,10 @@ class FunctionLifterContext: dest = function.ArchAndAddr( CoreArchitecture._from_cache(bn_fl_context.indirectBranches[i].destArch), - bn_fl_context.indirectBranches[i].dests[j].destAddr, + bn_fl_context.indirectBranches[i].destAddr, ) - if bn_fl_context.indirectBranches[i].dests[j].isAutoDefined: + if bn_fl_context.indirectBranches[i].autoDefined: if src not in auto_indirect_branches: auto_indirect_branches[src] = set() auto_indirect_branches[src].add(dest) -- cgit v1.3.1