diff options
author | Maxim Kuvyrkov <maxim@codesourcery.com> | 2012-10-08 20:52:53 -0700 |
---|---|---|
committer | Maxim Kuvyrkov <maxim@codesourcery.com> | 2012-10-08 20:52:53 -0700 |
commit | 57e605ba50a42e1e5adc0f020f3752e80f117c10 (patch) | |
tree | b21fda0d2a3ac232fa4d7896fd43a876a1e6520f /string/strstr.c | |
parent | ef1bb3618c77f92a5ab1a98f907e5bb5149dc3dc (diff) | |
download | glibc-57e605ba50a42e1e5adc0f020f3752e80f117c10.zip glibc-57e605ba50a42e1e5adc0f020f3752e80f117c10.tar.gz glibc-57e605ba50a42e1e5adc0f020f3752e80f117c10.tar.bz2 |
Fix BZ #14602: strstr and strcasestr return wrong result.
Diffstat (limited to 'string/strstr.c')
-rw-r--r-- | string/strstr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/string/strstr.c b/string/strstr.c index cfed771..d74cb46 100644 --- a/string/strstr.c +++ b/string/strstr.c @@ -35,10 +35,8 @@ #define AVAILABLE(h, h_l, j, n_l) \ (!memchr ((h) + (h_l), '\0', (j) + (n_l) - (h_l)) \ && ((h_l) = (j) + (n_l))) -#define AVAILABLE1(h, h_l, j, n_l) (true) -#define AVAILABLE2(h, h_l, j, n_l) AVAILABLE (h, h_l, j, n_l) +#define CHECK_EOL (1) #define RET0_IF_0(a) if (!a) goto ret0 -#define AVAILABLE1_USES_J (0) #include "str-two-way.h" #undef strstr |