reduce overhead

This commit is contained in:
Kuang-che Wu
2025-05-19 18:50:13 +08:00
parent 7c27fc7cfe
commit c699aa252d
3 changed files with 24 additions and 10 deletions

View File

@ -2791,9 +2791,9 @@ void fix_up_sync(afl_state_t *afl) {
}
if (strlen(afl->sync_id) > 50) {
if (strlen(afl->sync_id) > SYNC_ID_MAX_LEN) {
FATAL("sync_id max length is 50 characters");
FATAL("sync_id max length is %d characters", SYNC_ID_MAX_LEN);
}