From: David Carlton Date: Fri, 23 Jan 2004 17:56:46 +0000 (+0000) Subject: 2004-01-23 David Carlton X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a1b8c0673d81e41d4fc3919cc7a275794754c939;p=binutils-gdb.git 2004-01-23 David Carlton * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab. Fix for PR symtab/1534. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 484efb4a03c..ddebc0493ff 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-01-23 David Carlton + + * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab. + Fix for PR symtab/1534. + 2004-01-23 Mark Kettenis * NEWS (New native configurations): Mention OpenBSD/sparc and diff --git a/gdb/symfile.c b/gdb/symfile.c index 97800c83061..076fc456d18 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;