Browse Source

2007-12-06 Mick Davis <mickd@goanna.iinet.net.au>

* remote-utils.c (readchar): Allow binary data in received messages.
insight_6_8-branch
Daniel Jacobowitz 19 years ago
parent
commit
b79d787e44
  1. 4
      gdb/gdbserver/ChangeLog
  2. 2
      gdb/gdbserver/remote-utils.c

4
gdb/gdbserver/ChangeLog

@ -1,3 +1,7 @@
2007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
* remote-utils.c (readchar): Allow binary data in received messages.
2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
* win32-low.c (attaching): New global.

2
gdb/gdbserver/remote-utils.c

@ -722,7 +722,7 @@ readchar (void)
bufp = buf;
bufcnt--;
return *bufp++ & 0x7f;
return *bufp++;
}
/* Read a packet from the remote machine, with error checking,

Loading…
Cancel
Save