diff options
author | Martin Hunt <hunt@redhat.com> | 2002-07-03 20:27:12 +0000 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 2002-07-03 20:27:12 +0000 |
commit | 4dd79c29b4a65ae1ff861c3e9d42f190f6846770 (patch) | |
tree | 4864519e5a32eddb995446c54992fc166d15181d /gdb | |
parent | e64d9b3dea5a099bcb97984fed54ab14f967b02f (diff) | |
download | gdb-4dd79c29b4a65ae1ff861c3e9d42f190f6846770.zip gdb-4dd79c29b4a65ae1ff861c3e9d42f190f6846770.tar.gz gdb-4dd79c29b4a65ae1ff861c3e9d42f190f6846770.tar.bz2 |
2002-07-03 Martin M. Hunt <hunt@redhat.com>
* event-top.c (command_line_handler): Don't read past
beginning of buffer.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/event-top.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 928bf91..e20d22d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,6 +1,10 @@ 2002-07-03 Martin M. Hunt <hunt@redhat.com> + * event-top.c (command_line_handler): Don't read past + beginning of buffer. +2002-07-03 Martin M. Hunt <hunt@redhat.com> + * varobj.c (struct varobj_root): Change frame from CORE_ADDR to struct frame_id. (varobj_create): Store frame_id for root. diff --git a/gdb/event-top.c b/gdb/event-top.c index 823a3e1..86c658d 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -683,7 +683,7 @@ command_line_handler (char *rl) xfree (rl); /* Allocated in readline. */ - if (*(p - 1) == '\\') + if (p > linebuffer && *(p - 1) == '\\') { p--; /* Put on top of '\'. */ |