File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ PHP NEWS
2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 8.3.4
4
4
5
+ - Core:
6
+ . Fixed array key as string (case insensitive) comparison typo
7
+ for the second operand buffer size. (A. Slepykh)
8
+
5
9
- Curl:
6
10
. Fix failing tests due to string changes in libcurl 8.6.0. (Ayesh)
7
11
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ static zend_always_inline int php_array_key_compare_string_case_unstable_i(Bucke
188
188
l2 = s -> key -> len ;
189
189
} else {
190
190
s2 = zend_print_long_to_buf (buf2 + sizeof (buf2 ) - 1 , s -> h );
191
- l2 = buf2 + sizeof (buf2 ) - 1 - s1 ;
191
+ l2 = buf2 + sizeof (buf2 ) - 1 - s2 ;
192
192
}
193
193
return zend_binary_strcasecmp_l (s1 , l1 , s2 , l2 );
194
194
}
You can’t perform that action at this time.
0 commit comments