perf evlist: Fix missing thread_map__put in propagate_maps()
authorAdrian Hunter <[email protected]>
Tue, 8 Sep 2015 07:58:54 +0000 (10:58 +0300)
committerArnaldo Carvalho de Melo <[email protected]>
Tue, 15 Sep 2015 13:24:30 +0000 (10:24 -0300)
commitb278c364b35ae940b05f6a9edf8061fc886cd09e
tree06186ca44abb1e3926f754fd905b7536a3f436e5
parentf114d6eff76d20b521d8716e969e71b1f56f82b5
perf evlist: Fix missing thread_map__put in propagate_maps()

perf_evlist__propagate_maps() incorrectly assumes evsel->threads is NULL
before reassigning it, but it won't be NULL when perf_evlist__set_maps()
is used to set different (or NULL) maps.  Thus thread_map__put must be
used, which works even if evsel->threads is NULL.

Signed-off-by: Adrian Hunter <[email protected]>
Acked-by: Jiri Olsa <[email protected]>
Cc: Kan Liang <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/evlist.c