From 1c9f699cd9c816946535115db84ec0d0ce6bf330 Mon Sep 17 00:00:00 2001 From: Daniel Jacobowitz Date: Tue, 4 Nov 2008 15:32:54 +0000 Subject: * eval.c (evaluate_subexp_standard): Assert that there is at least one array dimension. --- gdb/ChangeLog | 5 +++++ gdb/eval.c | 2 ++ 2 files changed, 7 insertions(+) (limited to 'gdb') diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1c7b03c..45bbb12 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2008-11-04 Daniel Jacobowitz + + * eval.c (evaluate_subexp_standard): Assert that there is at + least one array dimension. + 2008-11-03 Vladimir Prus Make attach_command exception-safe diff --git a/gdb/eval.c b/gdb/eval.c index 4394aa1..ccb6b742 100644 --- a/gdb/eval.c +++ b/gdb/eval.c @@ -1976,6 +1976,8 @@ evaluate_subexp_standard (struct type *expect_type, if (nargs != ndimensions) error (_("Wrong number of subscripts")); + gdb_assert (nargs > 0); + /* Now that we know we have a legal array subscript expression let us actually find out where this element exists in the array. */ -- cgit v1.1