mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
perf symbols: Handle NULL dso in dso__name_len
We should use "[unknown]" in this case, in concert with the code in _hist_entry__dso_snprintf(). Otherwise we'll crash when recomputing the histogram column lengths in hists__calc_col_len(). Signed-off-by: David S. Miller <davem@davemloft.net> Link: http://lkml.kernel.org/r/20120325.162822.2267799792062571623.davem@davemloft.net Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
3738d40ec5
commit
1e2dd2f73a
@ -50,6 +50,8 @@ struct symbol_conf symbol_conf = {
|
||||
|
||||
int dso__name_len(const struct dso *dso)
|
||||
{
|
||||
if (!dso)
|
||||
return strlen("[unknown]");
|
||||
if (verbose)
|
||||
return dso->long_name_len;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user