diff options
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/name-lookup.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1661e4170c5..50df2b92f1d 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2003-10-03 Gabriel Dos Reis <gdr@integrable-solutions.net> + + * name-lookup.c (binding_entry_free): Nullify name and type + fields. + 2003-10-02 Mark Mitchell <mark@codesourcery.com> PR c++/12486 diff --git a/gcc/cp/name-lookup.c b/gcc/cp/name-lookup.c index 386fb20ede0..3e9d2cab584 100644 --- a/gcc/cp/name-lookup.c +++ b/gcc/cp/name-lookup.c @@ -66,6 +66,8 @@ binding_entry_make (tree name, tree type) static inline void binding_entry_free (binding_entry entry) { + entry->name = NULL; + entry->type = NULL; entry->chain = free_binding_entry; free_binding_entry = entry; } @@ -114,7 +116,6 @@ binding_table_free (binding_table table) { binding_entry entry = temp; temp = entry->chain; - entry->chain = NULL; binding_entry_free (entry); } table->chain[i] = NULL; |