aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Schauer <Peter.Schauer@mytum.de>1994-03-01 07:57:01 +0000
committerPeter Schauer <Peter.Schauer@mytum.de>1994-03-01 07:57:01 +0000
commite3d6ec4a0d275ca63d52247b7efc16ccc392c9aa (patch)
tree57d56e5b329a1731cc107f627afbc56e5dc8a3b2
parent3622687b760f5ef588c6cd4855f58038a463cf19 (diff)
downloadgdb-e3d6ec4a0d275ca63d52247b7efc16ccc392c9aa.zip
gdb-e3d6ec4a0d275ca63d52247b7efc16ccc392c9aa.tar.gz
gdb-e3d6ec4a0d275ca63d52247b7efc16ccc392c9aa.tar.bz2
* symtab.c (decode_line_1): Handle the case when skip_quoted does not
advance `p'.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/symtab.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 2d2b7bd..93723a0 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+Mon Feb 28 23:54:39 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
+
+ * symtab.c (decode_line_1): Handle the case when skip_quoted does not
+ advance `p'.
+
Mon Feb 28 12:40:46 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
* value.h (struct value): Add modifiable field.
diff --git a/gdb/symtab.c b/gdb/symtab.c
index 3e751db..357b349 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -1029,6 +1029,7 @@ find_pc_symtab (pc)
/* Might want to error() here (in case symtab is corrupt and
will cause a core dump), but maybe we can successfully
continue, so let's not. */
+ /* FIXME-32x64: assumes pc fits in a long */
warning ("\
(Internal error: pc 0x%lx in read in psymtab, but not in symtab.)\n",
(unsigned long) pc);
@@ -2148,7 +2149,8 @@ decode_line_1 (argptr, funfirstline, default_symtab, default_line, canonical)
copy = (char *) alloca (p - *argptr + 1);
memcpy (copy, *argptr, p - *argptr);
copy[p - *argptr] = '\0';
- if ((copy[0] == copy [p - *argptr - 1])
+ if (p != *argptr
+ && (copy[0] == copy [p - *argptr - 1])
&& strchr (gdb_completer_quote_characters, copy[0]) != NULL)
{
copy [p - *argptr - 1] = '\0';