Re: [PATCH 2/7] perf config: Check list empty before showing configs

2017-05-02 Thread Taeung Song
Hi Arnaldo, On 05/03/2017 12:12 AM, Arnaldo Carvalho de Melo wrote: Em Wed, Apr 26, 2017 at 09:21:03PM +0900, Taeung Song escreveu: If existent config files contains nothing, the sections list in config_set can be empty. So check not only NULL pointer of config_set but also the list in

Re: [PATCH 2/7] perf config: Check list empty before showing configs

2017-05-02 Thread Taeung Song
Hi Arnaldo, On 05/03/2017 12:12 AM, Arnaldo Carvalho de Melo wrote: Em Wed, Apr 26, 2017 at 09:21:03PM +0900, Taeung Song escreveu: If existent config files contains nothing, the sections list in config_set can be empty. So check not only NULL pointer of config_set but also the list in

Re: [PATCH 2/7] perf config: Check list empty before showing configs

2017-05-02 Thread Arnaldo Carvalho de Melo
Em Wed, Apr 26, 2017 at 09:21:03PM +0900, Taeung Song escreveu: > If existent config files contains nothing, > the sections list in config_set can be empty. > > So check not only NULL pointer of config_set but > also the list in config_set. > +++ b/tools/perf/builtin-config.c > @@ -75,7 +75,7

Re: [PATCH 2/7] perf config: Check list empty before showing configs

2017-05-02 Thread Arnaldo Carvalho de Melo
Em Wed, Apr 26, 2017 at 09:21:03PM +0900, Taeung Song escreveu: > If existent config files contains nothing, > the sections list in config_set can be empty. > > So check not only NULL pointer of config_set but > also the list in config_set. > +++ b/tools/perf/builtin-config.c > @@ -75,7 +75,7

[PATCH 2/7] perf config: Check list empty before showing configs

2017-04-26 Thread Taeung Song
If existent config files contains nothing, the sections list in config_set can be empty. So check not only NULL pointer of config_set but also the list in config_set. Cc: Jiri Olsa Cc: Namhyung Kim Signed-off-by: Taeung Song ---

[PATCH 2/7] perf config: Check list empty before showing configs

2017-04-26 Thread Taeung Song
If existent config files contains nothing, the sections list in config_set can be empty. So check not only NULL pointer of config_set but also the list in config_set. Cc: Jiri Olsa Cc: Namhyung Kim Signed-off-by: Taeung Song --- tools/perf/builtin-config.c | 4 ++-- tools/perf/util/config.c