From f33376f1cdb42955dccc2c73d160104167574b0a Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Wed, 7 May 2025 13:55:52 +0200 Subject: [PATCH] Change error message in restarting manager a bit (#3201) * *recursion* is not proper * say that it's a bug --- libafl/src/events/simple.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/events/simple.rs b/libafl/src/events/simple.rs index 86fd494739..e5b4dc1620 100644 --- a/libafl/src/events/simple.rs +++ b/libafl/src/events/simple.rs @@ -490,7 +490,7 @@ where #[cfg(all(unix, feature = "std", not(miri)))] if child_status == SIGNAL_RECURSION_EXIT { return Err(Error::illegal_state( - "The client is stuck in an unexpected signal handler recursion. It is most likely a fuzzer bug.", + "The fuzzer crashed inside a crash handler, this is likely a bug in fuzzer or libafl.", )); }