aboutsummaryrefslogtreecommitdiff
path: root/gdb/cp-valprint.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2006-12-05 20:53:28 +0000
committerH.J. Lu <hjl.tools@gmail.com>2006-12-05 20:53:28 +0000
commit9fb92a5a5b003e2741171194dc5ae5eb3ba5f4aa (patch)
tree3f00a318dd94b699e65800b0407207b27aa6f33a /gdb/cp-valprint.c
parentecde4882ba83d7e1aebaffed0450b877e0126592 (diff)
downloadgdb-9fb92a5a5b003e2741171194dc5ae5eb3ba5f4aa.zip
gdb-9fb92a5a5b003e2741171194dc5ae5eb3ba5f4aa.tar.gz
gdb-9fb92a5a5b003e2741171194dc5ae5eb3ba5f4aa.tar.bz2
2006-12-05 H.J. Lu <hongjiu.lu@intel.com>
* cp-valprint.c (cp_print_value_fields): Initialize tmp_obstack. (cp_print_value): Likewise. * p-valprint.c (pascal_object_print_value_fields): Likewise. (pascal_object_print_value): Likewise.
Diffstat (limited to 'gdb/cp-valprint.c')
-rw-r--r--gdb/cp-valprint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cp-valprint.c b/gdb/cp-valprint.c
index 84b66fe..2c086b1 100644
--- a/gdb/cp-valprint.c
+++ b/gdb/cp-valprint.c
@@ -265,7 +265,7 @@ cp_print_value_fields (struct type *type, struct type *real_type,
struct type **dont_print_vb,int dont_print_statmem)
{
int i, len, n_baseclasses;
- struct obstack tmp_obstack;
+ struct obstack tmp_obstack = { 0 };
char *last_dont_print = obstack_next_free (&dont_print_statmem_obstack);
int fields_seen = 0;
@@ -524,7 +524,7 @@ cp_print_value (struct type *type, struct type *real_type,
struct ui_file *stream, int format, int recurse,
enum val_prettyprint pretty, struct type **dont_print_vb)
{
- struct obstack tmp_obstack;
+ struct obstack tmp_obstack = { 0 };
struct type **last_dont_print
= (struct type **) obstack_next_free (&dont_print_vb_obstack);
int i, n_baseclasses = TYPE_N_BASECLASSES (type);