From 17010e84d6bb8b2c99fd727bbb7ef852665d66b4 Mon Sep 17 00:00:00 2001 From: "dbaron%dbaron.org" Date: Fri, 8 Aug 2003 22:32:40 +0000 Subject: [PATCH] Stop breaking negative numbers in calltrees. git-svn-id: svn://10.0.0.236/trunk@145767 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/rb/fix-linux-stack.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/tools/rb/fix-linux-stack.pl b/mozilla/tools/rb/fix-linux-stack.pl index 576998ddfdd..24476257e91 100755 --- a/mozilla/tools/rb/fix-linux-stack.pl +++ b/mozilla/tools/rb/fix-linux-stack.pl @@ -54,7 +54,7 @@ use IPC::Open2; my %pipes; while (<>) { my $line = $_; - if ($line =~ /^([ \|0-9]*)(.*) \[([^ ]*) \+(0x[0-9A-F]{8})\](.*)$/) { + if ($line =~ /^([ \|0-9-]*)(.*) \[([^ ]*) \+(0x[0-9A-F]{8})\](.*)$/) { my $before = $1; # allow preservation of balance trees my $badsymbol = $2; my $file = $3;