[Date Prev][Date Next] [Chronological] [Thread] [Top]

(ITS#3583) memcmp.c



Full_Name: Eric Irrgang
Version: 2.2.23
OS: Solaris 9
URL: 
Submission from: (NULL) (128.83.217.14)


openldap-2.2.23/libraries/liblutil/memcmp.c either should not exist or should
use a more flexible definition to be compliant with standard C:

-- openldap-2.2.23.orig/libraries/liblutil/memcmp.c     Thu Jan 20 11:01:04
2005
+++ openldap-2.2.23/libraries/liblutil/memcmp.c Thu Mar  3 18:57:03 2005
@@ -21,7 +21,7 @@
  * Memory Compare
  */
 int
-(memcmp)(const void *v1, const void *v2, int n)
+(memcmp)(const void *v1, const void *v2, size_t n)
 {
     if (n != 0) {
                const unsigned char *s1=v1, *s2=v2;