Skip to content

Instantly share code, notes, and snippets.

@pilvar222
Last active January 9, 2025 13:18
Show Gist options
  • Save pilvar222/5e5fd6d31ddb08eab65be73fa1a7f676 to your computer and use it in GitHub Desktop.
Save pilvar222/5e5fd6d31ddb08eab65be73fa1a7f676 to your computer and use it in GitHub Desktop.
patch to avoid false positive crashes in the FRRouting fuzzing branch, fixes https://github.com/FRRouting/frr/issues/14387
diff --git a/lib/frrevent.h b/lib/frrevent.h
index 16ed12038..b70960f58 100644
--- a/lib/frrevent.h
+++ b/lib/frrevent.h
@@ -299,6 +299,7 @@ void debug_signals(const sigset_t *sigs);
static inline void event_ignore_late_timer(struct event *event)
{
+ exit(0);
event->ignore_timer_late = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment