Author: jra
Date: 2005-08-02 17:52:44 +0000 (Tue, 02 Aug 2005)
New Revision: 8928

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8928

Log:
Fix mangle method = hash - bugid #2946. Incorrect strcmp_wa and
strncmp_wa.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/lib/util_unistr.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/util_unistr.c
===================================================================
--- branches/SAMBA_3_0/source/lib/util_unistr.c 2005-08-02 17:52:41 UTC (rev 
8927)
+++ branches/SAMBA_3_0/source/lib/util_unistr.c 2005-08-02 17:52:44 UTC (rev 
8928)
@@ -815,7 +815,7 @@
                a++;
                b++;
        }
-       return (cp - UCS2_CHAR(*b));
+       return (*(COPY_UCS2_CHAR(&cp,a)) - UCS2_CHAR(*b));
 }
 
 int strncmp_wa(const smb_ucs2_t *a, const char *b, size_t len)
@@ -828,7 +828,7 @@
                b++;
                n++;
        }
-       return (len - n)?(cp - UCS2_CHAR(*b)):0;
+       return (len - n)?(*(COPY_UCS2_CHAR(&cp,a)) - UCS2_CHAR(*b)):0;
 }
 
 smb_ucs2_t *strpbrk_wa(const smb_ucs2_t *s, const char *p)

Reply via email to