Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ext/standard/string.c
Original file line number Diff line number Diff line change
Expand Up @@ -5700,14 +5700,15 @@ PHP_FUNCTION(substr_compare)
{
zend_string *s1, *s2;
zend_long offset, len=0;
zend_bool len_is_default=1;
zend_bool cs=0;
size_t cmp_len;

if (zend_parse_parameters(ZEND_NUM_ARGS(), "SSl|lb", &s1, &s2, &offset, &len, &cs) == FAILURE) {
if (zend_parse_parameters(ZEND_NUM_ARGS(), "SSl|l!b", &s1, &s2, &offset, &len, &len_is_default, &cs) == FAILURE) {
RETURN_FALSE;
}

if (ZEND_NUM_ARGS() >= 4 && len <= 0) {
if (!len_is_default && len <= 0) {
if (len == 0) {
RETURN_LONG(0L);
} else {
Expand Down
14 changes: 14 additions & 0 deletions ext/standard/tests/strings/bug55451.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
--TEST--
Bug #55451 (substr_compare with NULL as default length)
--FILE--
<?php
var_dump(substr_compare("abcde", "ABCD", 0, NULL, false) != 0);
var_dump(substr_compare("abcde", "ABCD", 0, NULL, true) != 0);
var_dump(substr_compare("abcde", "ABCDE", 0, NULL, false) != 0);
var_dump(substr_compare("abcde", "ABCDE", 0, NULL, true) == 0);
?>
--EXPECT--
bool(true)
bool(true)
bool(true)
bool(true)
2 changes: 1 addition & 1 deletion ext/standard/tests/strings/substr_compare.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Test

Warning: substr_compare(): The length must be greater than or equal to zero in %s on line %d
bool(false)
int(0)
int(4)

Warning: substr_compare() expects parameter 4 to be integer, string given in %s on line %d
bool(false)
Expand Down