Re: [PATCH] perf: fix for double free in tools/perf stat

2014-10-15 Thread Arnaldo Carvalho de Melo
Em Tue, Oct 07, 2014 at 05:15:41PM +0900, Namhyung Kim escreveu: > Hi Yasser, > > On Sat, 4 Oct 2014 11:37:57 -0400, Yasser Shalabi wrote: > > Fix for double free bug in tools/perf due to dangling thread_map pointer in > > perf_evlist struct. > > Code path excercised when perf stat -C switch is

Re: [PATCH] perf: fix for double free in tools/perf stat

2014-10-07 Thread Namhyung Kim
Hi Yasser, On Sat, 4 Oct 2014 11:37:57 -0400, Yasser Shalabi wrote: > Fix for double free bug in tools/perf due to dangling thread_map pointer in > perf_evlist struct. > Code path excercised when perf stat -C switch is used but not set and is > followed by another switch. > Example: perf stat -

[PATCH] perf: fix for double free in tools/perf stat

2014-10-04 Thread Yasser Shalabi
Fix for double free bug in tools/perf due to dangling thread_map pointer in perf_evlist struct. Code path excercised when perf stat -C switch is used but not set and is followed by another switch. Example: perf stat -C -e. Signed-off-by: Yasser Shalabi --- tools/perf/util/evlist.c |1 + 1