summaryrefslogtreecommitdiff
path: root/gdb/cp-valprint.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2002-01-08 02:09:31 +0000
committerMichael Snyder <msnyder@specifix.com>2002-01-08 02:09:31 +0000
commit392ec364e2b7741c8bcb844edfe3331dbd944d78 (patch)
tree4e40d45bd497d0cd7e5ae42d52c2c99363e591be /gdb/cp-valprint.c
parentebb86bf37348f4561586a9bcc2eb8184f801d230 (diff)
downloadgdb-392ec364e2b7741c8bcb844edfe3331dbd944d78.tar.gz
2002-01-07 Michael Snyder <msnyder@redhat.com>
* cp-valprint.c (cp_print_value): FIXME comment, alloca size. * p-valprint.c (pascal_object_print_value): Ditto. * somread.c (som_symtab_read): Ditto. * symfile.c (simple_free_overlay_region_table): Ditto. * valops.c (value_assign): Ditto.
Diffstat (limited to 'gdb/cp-valprint.c')
-rw-r--r--gdb/cp-valprint.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/cp-valprint.c b/gdb/cp-valprint.c
index 567e0abed35..669203121c8 100644
--- a/gdb/cp-valprint.c
+++ b/gdb/cp-valprint.c
@@ -570,6 +570,7 @@ cp_print_value (struct type *type, struct type *real_type, char *valaddr,
&& ((boffset + offset) < 0
|| (boffset + offset) >= TYPE_LENGTH (type)))
{
+ /* FIXME (alloca): unsafe if baseclass is really really large. */
base_valaddr = (char *) alloca (TYPE_LENGTH (baseclass));
if (target_read_memory (address + offset + boffset, base_valaddr,
TYPE_LENGTH (baseclass)) != 0)