2007-08-04 Michael Snyder <msnyder@access-company.com>
authorMichael Snyder <msnyder@vmware.com>
Sun, 5 Aug 2007 00:43:34 +0000 (00:43 +0000)
committerMichael Snyder <msnyder@vmware.com>
Sun, 5 Aug 2007 00:43:34 +0000 (00:43 +0000)
* breakpoint.c (print_one_breakpoint): Off by one error.

gdb/ChangeLog
gdb/breakpoint.c

index 511f555ef5a848820b1a6e7a14be25b909ff5f35..66b2701c144baf6d78b495510e08cf21a6435054 100644 (file)
@@ -1,5 +1,7 @@
 2007-08-04  Michael Snyder  <msnyder@access-company.com>
 
+       * breakpoint.c (print_one_breakpoint): Off by one error.
+
        * tracepoint.c (add_register): Off by one error.
        (stringify_collection_list): Free malloc buffer.
 
index 8c27a24ae94ccb400af8d5fe5148f712712ab56f..f59f1da143c1f870d9195664a647cca36ccd39d1 100644 (file)
@@ -3414,7 +3414,7 @@ print_one_breakpoint (struct breakpoint *b,
 
   /* 2 */
   annotate_field (1);
-  if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0])))
+  if (((int) b->type >= (sizeof (bptypes) / sizeof (bptypes[0])))
       || ((int) b->type != bptypes[(int) b->type].type))
     internal_error (__FILE__, __LINE__,
                    _("bptypes table does not describe type #%d."),