Wed Sep 14 18:18:58 1994 Steve Chamberlain (sac@jonny.cygnus.com)
authorSteve Chamberlain <sac@cygnus>
Thu, 15 Sep 1994 01:29:07 +0000 (01:29 +0000)
committerSteve Chamberlain <sac@cygnus>
Thu, 15 Sep 1994 01:29:07 +0000 (01:29 +0000)
* remote-hms.c (hms_read_inferior_memory):  Cope when
target sends both \r and \n.

gdb/ChangeLog
gdb/remote-hms.c

index bdc5fad..c39acaa 100644 (file)
@@ -1,3 +1,8 @@
+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.
index 38e85f2..a553418 100644 (file)
@@ -1358,10 +1358,14 @@ hms_read_inferior_memory (memaddr, myaddr, len)
       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 
@@ -1369,7 +1373,7 @@ hms_read_inferior_memory (memaddr, myaddr, len)
       i = readchar();
       while (i != '\n' && i != '\r')
        i = readchar(); 
-
+      
       /* Now parse the line */
 
       addr = gethex (4, buffer, &ok);