1998-09-01  Ulrich Drepper  <drepper@cygnus.com>

	* debug/catchsegv.sh: Add one more pair of quotes.
This commit is contained in:
Ulrich Drepper 1998-09-01 18:58:12 +00:00
parent 76156ea152
commit fc3597c0f8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1998-09-01 Ulrich Drepper <drepper@cygnus.com>
* debug/catchsegv.sh: Add one more pair of quotes.
1998-09-01 17:53 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-load.c (add_name_to_object): Change return type to void and

View File

@ -85,7 +85,7 @@ if test $exval -gt 128 && test -f "$segv_output"; then
sed '1,/Backtrace/d' "$segv_output" |
(while read line; do
case "$line" in
[*) addr=`echo $line | sed 's/^\[\(.*\)\]$/\1/'`
[*) addr=`echo "$line" | sed 's/^\[\(.*\)\]$/\1/'`
complete=`addr2line -f -e "$prog" $addr 2>/dev/null`
if test $? -eq 0; then
echo "`echo "$complete"|sed 'N;s/\(.*\)\n\(.*\)/\2(\1)/;'`$line"