From: Paul Eggert Date: Sat, 2 Dec 2006 00:02:44 +0000 (+0000) Subject: * gzip.c (abort_gzip_signal): Don't call abort () as a "safeguard", X-Git-Tag: v1.3.12~52 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=38da29f7c83acc4e1134aec509ff1c22e1e542e9;p=debian%2Fgzip * gzip.c (abort_gzip_signal): Don't call abort () as a "safeguard", since it actually causes a core dump. Problem reported by Jakub Bogusz. --- 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 (); }