From 95eea7068278cb22c2c228083bafa4bdb7e3a487 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Mon, 5 Feb 2024 08:54:45 -0800 Subject: [PATCH] fix failure condition in entry point detection --- src/ctrl/ctrl_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctrl/ctrl_core.c b/src/ctrl/ctrl_core.c index b2797518..63f68c67 100644 --- a/src/ctrl/ctrl_core.c +++ b/src/ctrl/ctrl_core.c @@ -2192,7 +2192,7 @@ ctrl_thread__launch_and_init(CTRL_Msg *msg) } //- rjf: no entry point found -> done - if(!entries_found) + if(run_ctrls.traps.trap_count == 0) { done = 1; stop_event = event;