fix failure condition in entry point detection

This commit is contained in:
Ryan Fleury
2024-02-05 08:54:45 -08:00
parent 762013899f
commit 95eea70682
+1 -1
View File
@@ -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;