From: Christoph M. Becker Date: Mon, 30 Sep 2019 09:07:03 +0000 (+0200) Subject: Fix #78609: mb_check_encoding() no longer supports stringable objects X-Git-Tag: php-7.2.24RC1~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45db6fa567b65e7ecd49b59527904fd8566ad813;p=php Fix #78609: mb_check_encoding() no longer supports stringable objects We apply type juggling for other types than array. --- diff --git a/NEWS b/NEWS index b0be6e40f5..89a65dd49e 100644 --- a/NEWS +++ b/NEWS @@ -13,6 +13,8 @@ PHP NEWS - MBString: . Fixed bug #78579 (mb_decode_numericentity: args number inconsistency). (cmb) + . Fixed bug #78609 (mb_check_encoding() no longer supports stringable + objects). (cmb) - Standard: . Fixed bug #76342 (file_get_contents waits twice specified timeout). diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 173539f4b8..516b614324 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -5027,27 +5027,15 @@ PHP_FUNCTION(mb_check_encoding) RETURN_FALSE; } - switch(Z_TYPE_P(input)) { - case IS_LONG: - case IS_DOUBLE: - case IS_NULL: - case IS_TRUE: - case IS_FALSE: - RETURN_TRUE; - break; - case IS_STRING: - if (!php_mb_check_encoding(Z_STRVAL_P(input), Z_STRLEN_P(input), enc ? ZSTR_VAL(enc): NULL)) { - RETURN_FALSE; - } - break; - case IS_ARRAY: - if (!php_mb_check_encoding_recursive(HASH_OF(input), enc)) { - RETURN_FALSE; - } - break; - default: - php_error_docref(NULL, E_WARNING, "Input is something other than scalar or array"); + if (Z_TYPE_P(input) == IS_ARRAY) { + if (!php_mb_check_encoding_recursive(HASH_OF(input), enc)) { RETURN_FALSE; + } + } else { + convert_to_string(input); + if (!php_mb_check_encoding(Z_STRVAL_P(input), Z_STRLEN_P(input), enc ? ZSTR_VAL(enc): NULL)) { + RETURN_FALSE; + } } RETURN_TRUE; } diff --git a/ext/mbstring/tests/bug78609.phpt b/ext/mbstring/tests/bug78609.phpt new file mode 100644 index 0000000000..11f9b06f13 --- /dev/null +++ b/ext/mbstring/tests/bug78609.phpt @@ -0,0 +1,20 @@ +--TEST-- +Bug #78609 (mb_check_encoding() no longer supports stringable objects) +--SKIPIF-- + +--FILE-- + +--EXPECT-- +bool(true)