From 38da29f7c83acc4e1134aec509ff1c22e1e542e9 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 2 Dec 2006 00:02:44 +0000 Subject: [PATCH] * gzip.c (abort_gzip_signal): Don't call abort () as a "safeguard", since it actually causes a core dump. Problem reported by Jakub Bogusz. --- ChangeLog | 4 ++++ gzip.c | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b0fb1b4..b6d0620 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2006-12-01 Paul Eggert + * gzip.c (abort_gzip_signal): Don't call abort () as a "safeguard", + since it actually causes a core dump. Problem reported by + Jakub Bogusz. + * NEWS: Describe gzexe changes noted below. * Makefile.am (.in): Don't bother with SEDCMD. This stuff isn't needed any more (the hosts it caters to are long extinct), and was questionable diff --git a/gzip.c b/gzip.c index 013beeb..a9016a2 100644 --- a/gzip.c +++ b/gzip.c @@ -1848,5 +1848,4 @@ abort_gzip_signal (sig) remove_output_file (); signal (sig, SIG_DFL); raise (sig); - abort (); } -- 2.47.2