mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
perf symbols: Check the right return variable
In function dso__split_kallsyms(), curr_map saves the return value of map__new2. So check it instead of var map after the call returns. Signed-off-by: Zhang Yanmin <yanmin_zhang@linux.intel.com> Acked-by: David S. Miller <davem@davemloft.net> Cc: <stable@kernel.org> # for .33.x Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> LKML-Reference: <1267066851.1726.9.camel@localhost> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
c2fbaa4b48
commit
37fe5fcb7a
1 changed files with 1 additions and 1 deletions
|
@ -527,7 +527,7 @@ static int dso__split_kallsyms(struct dso *self, struct map *map,
|
|||
return -1;
|
||||
|
||||
curr_map = map__new2(pos->start, dso, map->type);
|
||||
if (map == NULL) {
|
||||
if (curr_map == NULL) {
|
||||
dso__delete(dso);
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue