From 82ac7acc6c58b94f3b8e0ea52c3d0ad91bcf93a2 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 22 Nov 2011 20:35:31 +0000 Subject: (bug_handler) remove top of traces that is inside bug handler from report --- perl-install/NEWS | 1 + perl-install/standalone.pm | 1 + 2 files changed, 2 insertions(+) diff --git a/perl-install/NEWS b/perl-install/NEWS index 57ca3a00a..5b0c172d1 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,7 @@ - drakbug: o report the gtk+ theme in use (#3127) which explain some crashes (eg: #2679) o include better C traces in reports + o remove top of traces that is inside bug handler from report Version 13.6 - 10 November 2011 diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index fdf659df9..7a9a8aa81 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -203,6 +203,7 @@ sub bug_handler { # we want the full backtrace: if ($is_signal) { my $ctrace = c::C_backtrace(); + $ctrace =~ s/0:.*(\d+:[^:]*Perl_sighandler)/\1/sig if $ctrace =~ /0:.*(\d+:[^:]*Perl_sighandler)/sig; $error .= "\nGlibc's trace:\n$ctrace\n"; } $error .= "Perl's trace:\n". common::backtrace() if $error; -- cgit v1.2.1