OSDN Git Service

perf tools: Do not fail in case of empty HOME env variable
authorJiri Olsa <jolsa@redhat.com>
Thu, 30 Mar 2017 14:46:37 +0000 (16:46 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 31 Mar 2017 14:26:04 +0000 (11:26 -0300)
commit3e00cbe8891a655520ca2cfe9b6d509d0a845f07
treeb955ef4837e06df3e51a01aa8d72ea70a56cd2f2
parent67ef28794d7e30f33936d655f2951e8dcae7cd5a
perf tools: Do not fail in case of empty HOME env variable

Currently we fail in the following case:

  $ unset HOME
  $ ./perf record ls
  $ echo $?
  255

It's because the config code init fails due to a missing HOME variable
value. Fix this by skipping the user config init if there's no HOME
variable value.

Reported-by: Jan Stancek <jstancek@redhat.com>
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/20170330144637.7468-1-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/config.c