Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Nov 2011 00:07:53 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r227808 - head/lib/libc/string
Message-ID:  <201111220007.pAM07rjP065608@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler (ports committer)
Date: Tue Nov 22 00:07:53 2011
New Revision: 227808
URL: http://svn.freebsd.org/changeset/base/227808

Log:
  - add check for pointer equality prior to performing the O(n) pass
  - while here change 's' to 's1' in strcoll
  
  Submitted by:	eadler@
  Reviewed by:	theraven@
  Approved by:	brooks@
  MFC after:	2 weeks

Modified:
  head/lib/libc/string/strcasecmp.c
  head/lib/libc/string/strcmp.c
  head/lib/libc/string/strcoll.c
  head/lib/libc/string/strncmp.c

Modified: head/lib/libc/string/strcasecmp.c
==============================================================================
--- head/lib/libc/string/strcasecmp.c	Mon Nov 21 23:32:14 2011	(r227807)
+++ head/lib/libc/string/strcasecmp.c	Tue Nov 22 00:07:53 2011	(r227808)
@@ -48,6 +48,9 @@ strcasecmp_l(const char *s1, const char 
 	const u_char
 			*us1 = (const u_char *)s1,
 			*us2 = (const u_char *)s2;
+	if (s1 == s2)
+	    return (0);
+
 	FIX_LOCALE(locale);
 
 	while (tolower_l(*us1, locale) == tolower_l(*us2++, locale))
@@ -65,18 +68,21 @@ int
 strncasecmp_l(const char *s1, const char *s2, size_t n, locale_t locale)
 {
 	FIX_LOCALE(locale);
-	if (n != 0) {
-		const u_char
-				*us1 = (const u_char *)s1,
-				*us2 = (const u_char *)s2;
-
-		do {
-			if (tolower_l(*us1, locale) != tolower_l(*us2++, locale))
-				return (tolower_l(*us1, locale) - tolower_l(*--us2, locale));
-			if (*us1++ == '\0')
-				break;
-		} while (--n != 0);
-	}
+
+	const u_char
+			*us1 = (const u_char *)s1,
+			*us2 = (const u_char *)s2;
+	
+	if (( s1 == s2) | (n == 0))
+	    return (0);
+
+
+	do {
+		if (tolower_l(*us1, locale) != tolower_l(*us2++, locale))
+			return (tolower_l(*us1, locale) - tolower_l(*--us2, locale));
+		if (*us1++ == '\0')
+			break;
+	} while (--n != 0);
 	return (0);
 }
 

Modified: head/lib/libc/string/strcmp.c
==============================================================================
--- head/lib/libc/string/strcmp.c	Mon Nov 21 23:32:14 2011	(r227807)
+++ head/lib/libc/string/strcmp.c	Tue Nov 22 00:07:53 2011	(r227808)
@@ -44,6 +44,9 @@ __FBSDID("$FreeBSD$");
 int
 strcmp(const char *s1, const char *s2)
 {
+	if (s1 == s2)
+	    return (0);
+
 	while (*s1 == *s2++)
 		if (*s1++ == '\0')
 			return (0);

Modified: head/lib/libc/string/strcoll.c
==============================================================================
--- head/lib/libc/string/strcoll.c	Mon Nov 21 23:32:14 2011	(r227807)
+++ head/lib/libc/string/strcoll.c	Tue Nov 22 00:07:53 2011	(r227808)
@@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$");
 #include <stdio.h>
 
 int
-strcoll_l(const char *s, const char *s2, locale_t locale)
+strcoll_l(const char *s1, const char *s2, locale_t locale)
 {
 	int len, len2, prim, prim2, sec, sec2, ret, ret2;
 	const char *t, *t2;
@@ -50,16 +50,16 @@ strcoll_l(const char *s, const char *s2,
 		(struct xlocale_collate*)locale->components[XLC_COLLATE];
 
 	if (table->__collate_load_error)
-		return strcmp(s, s2);
+		return strcmp(s1, s2);
 
 	len = len2 = 1;
 	ret = ret2 = 0;
 	if (table->__collate_substitute_nontrivial) {
-		t = tt = __collate_substitute(table, s);
+		t = tt = __collate_substitute(table, s1);
 		t2 = tt2 = __collate_substitute(table, s2);
 	} else {
 		tt = tt2 = NULL;
-		t = s;
+		t = s1;
 		t2 = s2;
 	}
 	while(*t && *t2) {
@@ -95,8 +95,8 @@ strcoll_l(const char *s, const char *s2,
 }
 
 int
-strcoll(const char *s, const char *s2)
+strcoll(const char *s1, const char *s2)
 {
-	return strcoll_l(s, s2, __get_locale());
+	return strcoll_l(s1, s2, __get_locale());
 }
 

Modified: head/lib/libc/string/strncmp.c
==============================================================================
--- head/lib/libc/string/strncmp.c	Mon Nov 21 23:32:14 2011	(r227807)
+++ head/lib/libc/string/strncmp.c	Tue Nov 22 00:07:53 2011	(r227808)
@@ -39,8 +39,9 @@ int
 strncmp(const char *s1, const char *s2, size_t n)
 {
 
-	if (n == 0)
+	if ((n == 0) | (s1 == s2))
 		return (0);
+
 	do {
 		if (*s1 != *s2++)
 			return (*(const unsigned char *)s1 -



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111220007.pAM07rjP065608>