aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2019-09-26 18:00:18 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-09-30 16:29:35 -0400
commit7d4c85b7035eb2f9ab217ce649dcd1bfaf0cacd3 (patch)
tree6dff74173a0f18d067b3f0853c02b66805d5c978 /tools
parentb7ad6108484221f431372b94763b74e550d16c93 (diff)
perf llvm: Don't access out-of-scope array
The 'test_dir' variable is assigned to the 'release' array which is out-of-scope 3 lines later. Extend the scope of the 'release' array so that an out-of-scope array isn't accessed. Bug detected by clang's address sanitizer. Fixes: 07bc5c699a3d ("perf tools: Make fetch_kernel_version() publicly available") Cc: stable@vger.kernel.org # v4.4+ Signed-off-by: Ian Rogers <irogers@google.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lore.kernel.org/lkml/20190926220018.25402-1-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/llvm-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/llvm-utils.c b/tools/perf/util/llvm-utils.c
index 8d04e3d070b1..8b14e4a7f1dc 100644
--- a/tools/perf/util/llvm-utils.c
+++ b/tools/perf/util/llvm-utils.c
@@ -233,14 +233,14 @@ static int detect_kbuild_dir(char **kbuild_dir)
233 const char *prefix_dir = ""; 233 const char *prefix_dir = "";
234 const char *suffix_dir = ""; 234 const char *suffix_dir = "";
235 235
236 /* _UTSNAME_LENGTH is 65 */
237 char release[128];
238
236 char *autoconf_path; 239 char *autoconf_path;
237 240
238 int err; 241 int err;
239 242
240 if (!test_dir) { 243 if (!test_dir) {
241 /* _UTSNAME_LENGTH is 65 */
242 char release[128];
243
244 err = fetch_kernel_version(NULL, release, 244 err = fetch_kernel_version(NULL, release,
245 sizeof(release)); 245 sizeof(release));
246 if (err) 246 if (err)