Commit 23cdb5d5 authored by Roel Kluin's avatar Roel Kluin Committed by Ingo Molnar

perf_counter tools: Fix index boundary check

Keep index within event_type_descriptors[]
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <4A5A7F0B.4070106@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent d4d7d0b9
...@@ -436,7 +436,7 @@ void print_events(void) ...@@ -436,7 +436,7 @@ void print_events(void)
for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) { for (i = 0; i < ARRAY_SIZE(event_symbols); i++, syms++) {
type = syms->type + 1; type = syms->type + 1;
if (type > ARRAY_SIZE(event_type_descriptors)) if (type >= ARRAY_SIZE(event_type_descriptors))
type = 0; type = 0;
if (type != prev_type) if (type != prev_type)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment