2001-08-10 Orjan Friberg <orjanf@axis.com>
authorOrjan Friberg <orjanf@axis.com>
Fri, 10 Aug 2001 09:59:33 +0000 (09:59 +0000)
committerOrjan Friberg <orjanf@axis.com>
Fri, 10 Aug 2001 09:59:33 +0000 (09:59 +0000)
* remote.c (read_frame): Correct off-by-one error in condition.

gdb/ChangeLog
gdb/remote.c

index ff0205f..5e6b10b 100644 (file)
@@ -1,3 +1,7 @@
+2001-08-10  Orjan Friberg  <orjanf@axis.com>
+
+       * remote.c (read_frame): Correct off-by-one error in condition.
+
 2001-08-08  Don Howard  <dhoward@redhat.com>
 
        * stabsread.c (read_type): Add support for const and volatile
index be90b20..ecf9afc 100644 (file)
@@ -4189,7 +4189,7 @@ read_frame (char *buf,
 
            if (repeat > 0 && repeat <= 255 
                && bc > 0
-                && bc + repeat < sizeof_buf - 1)
+                && bc + repeat - 1 < sizeof_buf - 1)
              {
                memset (&buf[bc], buf[bc - 1], repeat);
                bc += repeat;