* symtab.c (search_symbols): Pass NULL for file_matcher to

expand_symtabs_matching if there are no files to match.
This commit is contained in:
Doug Evans 2012-05-24 00:23:13 +00:00
parent f87b241e49
commit 71cddcc178
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2012-05-23 Doug Evans <dje@google.com>
* symtab.c (search_symbols): Pass NULL for file_matcher to
expand_symtabs_matching if there are no files to match.
* gdbtypes.c (lookup_typename): Simplify.
2012-05-23 Pedro Alves <palves@redhat.com>

View File

@ -3426,7 +3426,9 @@ search_symbols (char *regexp, enum search_domain kind,
{
if (objfile->sf)
objfile->sf->qf->expand_symtabs_matching (objfile,
search_symbols_file_matches,
(nfiles == 0
? NULL
: search_symbols_file_matches),
search_symbols_name_matches,
kind,
&datum);