summaryrefslogtreecommitdiff
path: root/gdb/p-valprint.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2006-12-05 20:53:28 +0000
committerH.J. Lu <hjl@lucon.org>2006-12-05 20:53:28 +0000
commitf9052240d40e0cdffe3643f938a3c57c28d3e4f7 (patch)
tree07175536dc4db44668f3fe11a2179ee3dbe4db3f /gdb/p-valprint.c
parenta15a5a99c8107fe28567ea8df65094a6491ac960 (diff)
downloadgdb-f9052240d40e0cdffe3643f938a3c57c28d3e4f7.tar.gz
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/p-valprint.c')
-rw-r--r--gdb/p-valprint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/p-valprint.c b/gdb/p-valprint.c
index 33b797451ec..0049233c22f 100644
--- a/gdb/p-valprint.c
+++ b/gdb/p-valprint.c
@@ -753,7 +753,7 @@ pascal_object_print_value_fields (struct type *type, const gdb_byte *valaddr,
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);
CHECK_TYPEDEF (type);
@@ -922,7 +922,7 @@ pascal_object_print_value (struct type *type, const gdb_byte *valaddr,
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);