about summary refs log tree commit diff
path: root/debug/catchsegv.sh
diff options
context:
space:
mode:
Diffstat (limited to 'debug/catchsegv.sh')
-rwxr-xr-xdebug/catchsegv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/catchsegv.sh b/debug/catchsegv.sh
index a813b6d614..6ca404da08 100755
--- a/debug/catchsegv.sh
+++ b/debug/catchsegv.sh
@@ -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"