aboutsummaryrefslogtreecommitdiff
path: root/string/str-two-way.h
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2010-10-06 13:48:07 -0400
committerUlrich Drepper <drepper@gmail.com>2010-10-06 13:48:07 -0400
commit5fb308bca2f333dcc835945be85e165cd7843d5b (patch)
treef67ddffc0b758348e8f55ee94b69730af0955240 /string/str-two-way.h
parent1c375652919fb4482ae946d1cd612fa655429e11 (diff)
downloadglibc-5fb308bca2f333dcc835945be85e165cd7843d5b.zip
glibc-5fb308bca2f333dcc835945be85e165cd7843d5b.tar.gz
glibc-5fb308bca2f333dcc835945be85e165cd7843d5b.tar.bz2
Fix strstr and memmem algorithm.
Diffstat (limited to 'string/str-two-way.h')
-rw-r--r--string/str-two-way.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/str-two-way.h b/string/str-two-way.h
index 502af47..76044b3 100644
--- a/string/str-two-way.h
+++ b/string/str-two-way.h
@@ -350,8 +350,8 @@ two_way_long_needle (const unsigned char *haystack, size_t haystack_len,
a byte out of place, there can be no match until
after the mismatch. */
shift = needle_len - period;
- memory = 0;
}
+ memory = 0;
j += shift;
continue;
}