|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-12-12 04:48 UTC] stas@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 13:00:01 2025 UTC |
strncasecmp returns len1 - len2, regardless of how many characters we wanted to compare, thus strncasecmp('foo', 'foosomethingelse', 3) would return -13 instead of 0, as would be correct. The following patch fixes this problem properly: Index: zend_operators.c =================================================================== RCS file: /repository/Zend/zend_operators.c,v retrieving revision 1.88 diff -u -5 -r1.88 zend_operators.c --- zend_operators.c 2000/11/21 22:41:49 1.88 +++ zend_operators.c 2000/12/11 21:06:29 @@ -1561,11 +1561,11 @@ if (c1 != c2) { return c1 - c2; } } - return len1 - len2; + return MIN(length, len1) - MIN(length, len2); } ZEND_API int zend_binary_zval_strcmp(zval *s1, zval *s2) {