Change error message in restarting manager a bit (#3201)

* *recursion* is not proper

* say that it's a bug
This commit is contained in:
Dongjia "toka" Zhang 2025-05-07 13:55:52 +02:00 committed by GitHub
parent 6dd52722de
commit f33376f1cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -490,7 +490,7 @@ where
#[cfg(all(unix, feature = "std", not(miri)))] #[cfg(all(unix, feature = "std", not(miri)))]
if child_status == SIGNAL_RECURSION_EXIT { if child_status == SIGNAL_RECURSION_EXIT {
return Err(Error::illegal_state( 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.",
)); ));
} }