diff options
author | Eric Blake <eblake@redhat.com> | 2010-10-06 13:48:07 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2010-10-06 13:48:07 -0400 |
commit | 5fb308bca2f333dcc835945be85e165cd7843d5b (patch) | |
tree | f67ddffc0b758348e8f55ee94b69730af0955240 /string/str-two-way.h | |
parent | 1c375652919fb4482ae946d1cd612fa655429e11 (diff) | |
download | glibc-5fb308bca2f333dcc835945be85e165cd7843d5b.tar.gz glibc-5fb308bca2f333dcc835945be85e165cd7843d5b.tar.xz glibc-5fb308bca2f333dcc835945be85e165cd7843d5b.zip |
Fix strstr and memmem algorithm.
Diffstat (limited to 'string/str-two-way.h')
-rw-r--r-- | string/str-two-way.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/str-two-way.h b/string/str-two-way.h index 502af47046..76044b34fe 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; } |