Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1599240

[PATCH] perf: fix typo in function switch_data_file

From changbin.du@intel.com
Newsgroups linux.kernel
Subject [PATCH] perf: fix typo in function switch_data_file
Date 2017-03-13 12:50 +0100
Message-ID <tkwE9-8nq-9@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


From: Changbin Du <changbin.du@intel.com>

Should clear buf abs_path, not options.

Signed-off-by: Changbin Du <changbin.du@intel.com>
---
 tools/perf/ui/browsers/hists.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c
index a6dae80..6fafe02 100644
--- a/tools/perf/ui/browsers/hists.c
+++ b/tools/perf/ui/browsers/hists.c
@@ -2350,7 +2350,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];
-- 
2.7.4

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] perf: fix typo in function switch_data_file changbin.du@intel.com - 2017-03-13 12:50 +0100
  Re: [PATCH] perf: fix typo in function switch_data_file Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-03-13 16:10 +0100

csiph-web