Last active
January 9, 2025 13:18
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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