summaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2010-03-13 00:15:06 +0000
committerXin LI <delphij@FreeBSD.org>2010-03-13 00:15:06 +0000
commit87c88b26325c08173dc3dec064b116c1714af857 (patch)
tree672d5f163c49eb5e3a20085370141a95a8c7edd7 /lib/libc/string
parentd5c6bd74d945a1be289c51d0da26428993f28eb5 (diff)
Notes
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/strlen.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/string/strlen.c b/lib/libc/string/strlen.c
index 0302aced07dd..2bc1f2b1febb 100644
--- a/lib/libc/string/strlen.c
+++ b/lib/libc/string/strlen.c
@@ -99,14 +99,15 @@ strlen(const char *str)
lp = (const unsigned long *)((uintptr_t)str & ~LONGPTR_MASK);
va = (*lp - mask01);
vb = ((~*lp) & mask80);
+ lp++;
if (va & vb)
/* Check if we have \0 in the first part */
- for (p = str; (uintptr_t)p & LONGPTR_MASK; p++)
+ for (p = str; p < (const char *)lp; p++)
if (*p == '\0')
return (p - str);
/* Scan the rest of the string using word sized operation */
- for (lp = (const unsigned long *)p; ; lp++) {
+ for (; ; lp++) {
va = (*lp - mask01);
vb = ((~*lp) & mask80);
if (va & vb) {