2002-07-03 Martin M. Hunt <hunt@redhat.com>
* event-top.c (command_line_handler): Don't read past beginning of buffer.
This commit is contained in:
parent
e64d9b3dea
commit
4dd79c29b4
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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 '\'. */
|
||||
|
||||
|
|
Loading…
Reference in a new issue