From 768ab11ecfeb04cb80f99a852f7581d8c4587a8a Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 30 Dec 2015 21:11:28 -0500 Subject: [PATCH] Removed unsafe call from segfault catcher --- src/daemon.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/daemon.cpp b/src/daemon.cpp index a994362..92b0355 100644 --- a/src/daemon.cpp +++ b/src/daemon.cpp @@ -68,7 +68,6 @@ void segfault_handler(int sig) { size = backtrace(array, 10); // print out all the frames to stderr - fprintf(stderr, "Error: signal %d:\n", sig); backtrace_symbols_fd(array, size, STDERR_FILENO); exit(1); }