diff options
author | Keith Seitz <keiths@redhat.com> | 2014-04-16 14:20:19 -0700 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2014-04-16 14:20:19 -0700 |
commit | c4f87ca6dbe041e2a331e5054a76c9134f29d545 (patch) | |
tree | 40f41bd7fc91b39debea57804458d7d7b1e41696 /gdb/cp-namespace.c | |
parent | fe28be73c7c22cc6eb1c3573f1be65c75e37d9b7 (diff) | |
download | gdb-c4f87ca6dbe041e2a331e5054a76c9134f29d545.zip gdb-c4f87ca6dbe041e2a331e5054a76c9134f29d545.tar.gz gdb-c4f87ca6dbe041e2a331e5054a76c9134f29d545.tar.bz2 |
PR c++/16597
[forgot to commit/push these with previous push]
If lookup_symbol_file tries to locate a member variable with NULL name:
/* A simple lookup failed. Check if the symbol was defined in
a base class. */
cleanup = make_cleanup (null_cleanup, NULL);
/* Find the name of the class and the name of the method,
variable, etc. */
prefix_len = cp_entire_prefix_len (name);
/* If no prefix was found, search "this". */
if (prefix_len == 0)
{
struct type *type;
struct symbol *this;
this = lookup_language_this (language_def (language_cplus), block);
if (this == NULL)
{
do_cleanups (cleanup);
return NULL;
}
type = check_typedef (TYPE_TARGET_TYPE (SYMBOL_TYPE (this)));
klass = xstrdup (TYPE_NAME (type));
nested = xstrdup (name);
}
TYPE_NAME (type) is NULL, so xstrdup (NULL) and boom!
This can happen, e.g., with clang++. See testsuite/gdb.cp/namelessclass.exp
or the bugzilla report.
This patch simply adds a fencepost against this case, allowing the caller
of lookup_symbol_file to search other blocks for the right symbol.
Diffstat (limited to 'gdb/cp-namespace.c')
-rw-r--r-- | gdb/cp-namespace.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/cp-namespace.c b/gdb/cp-namespace.c index 1085556..ae7c852 100644 --- a/gdb/cp-namespace.c +++ b/gdb/cp-namespace.c @@ -694,6 +694,11 @@ lookup_symbol_file (const char *name, } type = check_typedef (TYPE_TARGET_TYPE (SYMBOL_TYPE (this))); + /* If TYPE_NAME is NULL, abandon trying to find this symbol. + This can happen for lambda functions compiled with clang++, + which outputs no name for the container class. */ + if (TYPE_NAME (type) == NULL) + return NULL; klass = xstrdup (TYPE_NAME (type)); nested = xstrdup (name); } |