aboutsummaryrefslogtreecommitdiff
path: root/libc/upstream-openbsd/lib/libc/string/strstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/upstream-openbsd/lib/libc/string/strstr.c')
-rw-r--r--libc/upstream-openbsd/lib/libc/string/strstr.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/libc/upstream-openbsd/lib/libc/string/strstr.c b/libc/upstream-openbsd/lib/libc/string/strstr.c
index 241a080e7..079d69d25 100644
--- a/libc/upstream-openbsd/lib/libc/string/strstr.c
+++ b/libc/upstream-openbsd/lib/libc/string/strstr.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: strstr.c,v 1.9 2020/04/16 12:37:52 claudio Exp $ */
+/* $OpenBSD: strstr.c,v 1.8 2018/04/30 07:44:56 denis Exp $ */
/*
- * Copyright (c) 2005-2018 Rich Felker
+ * Copyright (c) 2005-2014 Rich Felker
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
@@ -24,8 +24,13 @@
*/
#include <string.h>
+#include <stdlib.h>
#include <stdint.h>
+#ifdef DEBUG
+#include <stdio.h>
+#endif
+
static char *
twobyte_strstr(const unsigned char *h, const unsigned char *n)
{
@@ -141,8 +146,11 @@ twoway_strstr(const unsigned char *h, const unsigned char *n)
/* Check last byte first; advance by shift on mismatch */
if (BITOP(byteset, h[l-1], &)) {
k = l-shift[h[l-1]];
+#ifdef DEBUG
+ printf("adv by %zu (on %c) at [%s] (%zu;l=%zu)\n", k, h[l-1], h, shift[h[l-1]], l);
+#endif
if (k) {
- if (k < mem) k = mem;
+ if (mem0 && mem && k < p) k = l-p;
h += k;
mem = 0;
continue;