summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2009-03-21 00:46:16 +0000
committerTom Tromey <tromey@redhat.com>2009-03-21 00:46:16 +0000
commitb4494ffc89755afd15f3dda0b71b82244aa5ea2f (patch)
tree9c5f633b76daae88b828311019d15b4ab5b61756
parent095e9826734cc7660ab9f444e72a517736272902 (diff)
downloadgdb-b4494ffc89755afd15f3dda0b71b82244aa5ea2f.tar.gz
* c-lang.c (evaluate_subexp_c): Call check_typedef.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/c-lang.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1786f7ed870..c5f7527bc47 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,4 +1,8 @@
2009-03-20 Tom Tromey <tromey@redhat.com>
+
+ * c-lang.c (evaluate_subexp_c): Call check_typedef.
+
+2009-03-20 Tom Tromey <tromey@redhat.com>
Julian Brown <julian@codesourcery.com>
PR i18n/7220, PR i18n/7821, PR exp/8815, PR exp/9103,
diff --git a/gdb/c-lang.c b/gdb/c-lang.c
index deab3f4fa0b..0c9e4f8059e 100644
--- a/gdb/c-lang.c
+++ b/gdb/c-lang.c
@@ -917,6 +917,10 @@ evaluate_subexp_c (struct type *expect_type, struct expression *exp,
default:
internal_error (__FILE__, __LINE__, "unhandled c_string_type");
}
+
+ /* Ensure TYPE_LENGTH is valid for TYPE. */
+ check_typedef (type);
+
dest_charset = charset_for_string_type (dest_type);
++*pos;