From: Changbin Du Date: Mon, 13 Mar 2017 11:46:52 +0000 (+0800) Subject: perf hists browser: Fix typo in function switch_data_file X-Git-Tag: v4.12-rc1~152^2~42^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3ef5b4023c64c16c793a066a7a2ed6ea3767e0d7;p=thirdparty%2Flinux.git perf hists browser: Fix typo in function switch_data_file Should clear buf 'abs_path', not 'options'. Signed-off-by: Changbin Du Cc: Feng Tang Cc: Peter Zijlstra Fixes: 341487ab561f ("perf hists browser: Add option for runtime switching perf data file") Link: http://lkml.kernel.org/r/20170313114652.9207-1-changbin.du@intel.com Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c index fc4fb669ceee3..2dc82bec10c04 100644 --- a/tools/perf/ui/browsers/hists.c +++ b/tools/perf/ui/browsers/hists.c @@ -2308,7 +2308,7 @@ static int switch_data_file(void) return ret; memset(options, 0, sizeof(options)); - memset(options, 0, sizeof(abs_path)); + memset(abs_path, 0, sizeof(abs_path)); while ((dent = readdir(pwd_dir))) { char path[PATH_MAX];