MINOR: stream: use ABORT_NOW() and not abort() in stream_dump_and_crash()
Using abort() occasionally results in unexploitable core due to issues
rewinding the stack. Let's use ABORT_NOW() which in addition to crashing
much closer to the call point also has the benefit of showing the call
trace.
diff --git a/src/stream.c b/src/stream.c
index bb82761..e3e0847 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -2733,7 +2733,7 @@
ha_alert("%s", msg);
send_log(NULL, LOG_EMERG, "%s", msg);
- abort();
+ ABORT_NOW();
}
/* initialize the require structures */