diff options
author | David Carlton <carlton@bactrian.org> | 2004-01-23 17:56:46 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2004-01-23 17:56:46 +0000 |
commit | a1b8c0673d81e41d4fc3919cc7a275794754c939 (patch) | |
tree | 13326bc91a70189a925a3c84cd92297cf56af6d7 /gdb/symfile.c | |
parent | 4f199be3eb4eb5e1d130e2b8583fb9102d39ba39 (diff) | |
download | gdb-a1b8c0673d81e41d4fc3919cc7a275794754c939.zip gdb-a1b8c0673d81e41d4fc3919cc7a275794754c939.tar.gz gdb-a1b8c0673d81e41d4fc3919cc7a275794754c939.tar.bz2 |
2004-01-23 David Carlton <carlton@kealia.com>
* symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
Fix for PR symtab/1534.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index 97800c8..076fc45 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -1918,6 +1918,7 @@ reread_symbols (void) objfile->symtabs = NULL; objfile->psymtabs = NULL; objfile->free_psymtabs = NULL; + objfile->cp_namespace_symtab = NULL; objfile->msymbols = NULL; objfile->sym_private = NULL; objfile->minimal_symbol_count = 0; |