perf tools: Fix handling of wildcards in tracepoint event selectors

It wasn't accounting the ':' when consuming bytes in the the event
selector string, so parse_events() would fail in this test:

if (!(*str == 0 || *str == ',' || isspace(*str)))
return -1;

as *str would be pointing to '*', the last character in the '-e' arg in:

$ perf record -q -a -D -e sched:sched_* | perf script -i - -s perf-script.py

Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

+1 -1
+1 -1
tools/perf/util/parse-events.c
··· 555 555 if (evt_length >= MAX_EVENT_LENGTH) 556 556 return EVT_FAILED; 557 557 if (strpbrk(evt_name, "*?")) { 558 - *strp += strlen(sys_name) + evt_length; 558 + *strp += strlen(sys_name) + evt_length + 1; /* 1 == the ':' */ 559 559 return parse_multiple_tracepoint_event(sys_name, evt_name, 560 560 flags); 561 561 } else {