diff options
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r-- | Zend/zend_operators.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 73577e6181..d8507924c9 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1300,6 +1300,7 @@ ZEND_API int zend_binary_strncmp(char *s1, uint len1, char *s2, uint len2, uint ZEND_API int zend_binary_strcasecmp(char *s1, uint len1, char *s2, uint len2) { int len; + int c1,c2; len = MIN(len1, len2); |