diff options
author | Juha Leppanen <juha_motorsportcom@luukku.com> | 2009-12-07 17:00:40 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-12-07 17:33:20 (GMT) |
commit | d56728b8d7fb3e1e5e5f97b88fdf6b43a35b4f5e (patch) | |
tree | 3188acba441b24355f15eb23d8d167806b164085 /tools/perf/util/probe-finder.c | |
parent | d32ba45503acf9c23b301eba2397ca2ee322627b (diff) | |
download | linux-fsl-qoriq-d56728b8d7fb3e1e5e5f97b88fdf6b43a35b4f5e.tar.xz |
perf probe: Fix strtailcmp() to compare s1and s2[0]
Fix strtailcmp() to compare s1[0] and s2[0]. strtailcmp() returns 0
if "a" and "b" or "a" and "ab", it's a wrong behavior. This patch
fixes it.
Signed-off-by: "Juha Leppanen" <juha_motorsportcom@luukku.com>
Acked-by: Masami Hiramatsu <mhiramat@redhat.com>
Cc: systemtap <systemtap@sources.redhat.com>
Cc: DLE <dle-develop@lists.sourceforge.net>
Cc: Juha Leppanen <juha_motorsportcom@luukku.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <20091207170040.19230.37464.stgit@dhcp-100-2-132.bos.redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/probe-finder.c')
-rw-r--r-- | tools/perf/util/probe-finder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/probe-finder.c b/tools/perf/util/probe-finder.c index 293cdfc..4585f1d 100644 --- a/tools/perf/util/probe-finder.c +++ b/tools/perf/util/probe-finder.c @@ -106,7 +106,7 @@ static int strtailcmp(const char *s1, const char *s2) { int i1 = strlen(s1); int i2 = strlen(s2); - while (--i1 > 0 && --i2 > 0) { + while (--i1 >= 0 && --i2 >= 0) { if (s1[i1] != s2[i2]) return s1[i1] - s2[i2]; } |