* remote-hms.c (hms_read_inferior_memory): Cope when
target sends both \r and \n.
+Wed Sep 14 18:18:58 1994 Steve Chamberlain (sac@jonny.cygnus.com)
+
+ * remote-hms.c (hms_read_inferior_memory): Cope when
+ target sends both \r and \n.
+
Wed Sep 14 17:14:57 1994 Stan Shebs (shebs@andros.cygnus.com)
* remote-mips.c (mips_error): Place NORETURN macro correctly.
char byte[16];
buffer[0] = readchar ();
+ while (buffer[0] == '\r'
+ || buffer[0] == '\n')
+ buffer[0] = readchar ();
+
if (buffer[0] == 'M')
break;
- for (i = 1; i < 60; i++) {
+ for (i = 1; i < 50; i++) {
buffer[i] = readchar ();
}
/* sometimes we loose characters in the ascii representation of the
i = readchar();
while (i != '\n' && i != '\r')
i = readchar();
-
+
/* Now parse the line */
addr = gethex (4, buffer, &ok);