From 69d5065ebfa0fd026aec538c722a30e0347f431d Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 26 Apr 2016 16:05:37 -0400 Subject: [PATCH] move ip down as well --- src/zm_signal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_signal.cpp b/src/zm_signal.cpp index 26cfb763a..bbc40e916 100644 --- a/src/zm_signal.cpp +++ b/src/zm_signal.cpp @@ -49,9 +49,9 @@ RETSIGTYPE zm_die_handler(int signal) { Error("Got signal %d (%s), crashing", signal, strsignal(signal)); #if (defined(__i386__) || defined(__x86_64__)) - void *ip = 0; // Get more information if available #if ( HAVE_SIGINFO_T && HAVE_UCONTEXT_T ) + void *ip = 0; void *cr2 = 0; if (info && context) {