2005-10-17 Jim Blandy <jimb@redhat.com>
authorJim Blandy <jimb@codesourcery.com>
Tue, 18 Oct 2005 00:04:11 +0000 (00:04 +0000)
committerJim Blandy <jimb@codesourcery.com>
Tue, 18 Oct 2005 00:04:11 +0000 (00:04 +0000)
* dwarf2expr.c (dwarf_expr_fetch): Use correct comparison to
detect stack underflow.

gdb/ChangeLog
gdb/dwarf2expr.c

index 0702a65..37bbf05 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-17  Jim Blandy  <jimb@redhat.com>
+
+       * dwarf2expr.c (dwarf_expr_fetch): Use correct comparison to
+       detect stack underflow.
+
 2005-10-14  Paul Gilliam  <pgilliam@us.ibm.com>
 
         * rs6000-tdep.c (rs6000_register_reggroup_p): Add vscr to test for
index e75dcee..1296633 100644 (file)
@@ -98,7 +98,7 @@ dwarf_expr_pop (struct dwarf_expr_context *ctx)
 CORE_ADDR
 dwarf_expr_fetch (struct dwarf_expr_context *ctx, int n)
 {
-  if (ctx->stack_len < n)
+  if (ctx->stack_len <= n)
      error (_("Asked for position %d of stack, stack only has %d elements on it."),
            n, ctx->stack_len);
   return ctx->stack[ctx->stack_len - (1 + n)];