diff options
author | Sterling Augustine <saugustine@google.com> | 2013-12-17 13:43:34 -0800 |
---|---|---|
committer | Sterling Augustine <saugustine@google.com> | 2013-12-23 15:14:39 -0800 |
commit | e617b0692b15848fe5c91eb4810cc670d34ae628 (patch) | |
tree | 74baffb1b37f360186db5cadaabd40f1f7141822 /gdb | |
parent | 4415de747e2d350a48661e87e2cde941cca6a46c (diff) | |
download | gdb-e617b0692b15848fe5c91eb4810cc670d34ae628.zip gdb-e617b0692b15848fe5c91eb4810cc670d34ae628.tar.gz gdb-e617b0692b15848fe5c91eb4810cc670d34ae628.tar.bz2 |
2013-12-17 Sterling Augustine <saugustine@google.com>
* linespec.c (add_sal_to_sals): Use "<unknown>" when a symbol
isn't found.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/linespec.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9964748..87701b4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-12-23 Sterling Augustine <saugustine@google.com> + + * linespec.c (add_sal_to_sals): Use "<unknown>" when a symbol + isn't found. + 2013-12-23 Sergio Durigan JUnior <sergiodj@redhat.com> * stap-probe.c (struct stap_probe) <args_parsed>: Add comment. diff --git a/gdb/linespec.c b/gdb/linespec.c index 9468f26..e8bc695 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -885,7 +885,7 @@ add_sal_to_sals (struct linespec_state *self, if (symname != NULL) canonical->suffix = xstrdup (symname); else - canonical->suffix = NULL; + canonical->suffix = xstrdup ("<unknown>"); canonical->symtab = NULL; } } |