@@ -1481,7 +1481,7 @@ static ZEND_FUNCTION(brotli_compress)
1481
1481
Z_PARAM_LONG (level )
1482
1482
Z_PARAM_LONG (mode )
1483
1483
Z_PARAM_STR_OR_NULL (dict )
1484
- ZEND_PARSE_PARAMETERS_END ( );
1484
+ ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
1485
1485
1486
1486
php_brotli_context ctx ;
1487
1487
php_brotli_context_init (& ctx );
@@ -1538,7 +1538,7 @@ static ZEND_FUNCTION(brotli_compress_init)
1538
1538
Z_PARAM_LONG (level )
1539
1539
Z_PARAM_LONG (mode )
1540
1540
Z_PARAM_STR_OR_NULL (dict )
1541
- ZEND_PARSE_PARAMETERS_END ( );
1541
+ ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
1542
1542
1543
1543
PHP_BROTLI_CONTEXT_OBJ_INIT_OF_CLASS (php_brotli_compress_context_ce );
1544
1544
@@ -1573,7 +1573,7 @@ static ZEND_FUNCTION(brotli_compress_add)
1573
1573
Z_PARAM_STRING (in_buf , in_size )
1574
1574
Z_PARAM_OPTIONAL
1575
1575
Z_PARAM_LONG (mode )
1576
- ZEND_PARSE_PARAMETERS_END ( );
1576
+ ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
1577
1577
1578
1578
if (mode != BROTLI_OPERATION_PROCESS &&
1579
1579
mode != BROTLI_OPERATION_FLUSH &&
@@ -1670,7 +1670,7 @@ static ZEND_FUNCTION(brotli_uncompress)
1670
1670
Z_PARAM_STRING (in , in_size )
1671
1671
Z_PARAM_OPTIONAL
1672
1672
Z_PARAM_STR_OR_NULL (dict )
1673
- ZEND_PARSE_PARAMETERS_END ( );
1673
+ ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
1674
1674
1675
1675
php_brotli_context ctx ;
1676
1676
php_brotli_context_init (& ctx ) ;
@@ -1719,7 +1719,7 @@ static ZEND_FUNCTION(brotli_uncompress_init)
1719
1719
ZEND_PARSE_PARAMETERS_START (0 , 1 )
1720
1720
Z_PARAM_OPTIONAL
1721
1721
Z_PARAM_STR_OR_NULL (dict )
1722
- ZEND_PARSE_PARAMETERS_END ( );
1722
+ ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
1723
1723
1724
1724
PHP_BROTLI_CONTEXT_OBJ_INIT_OF_CLASS (php_brotli_uncompress_context_ce );
1725
1725
@@ -1753,7 +1753,7 @@ static ZEND_FUNCTION(brotli_uncompress_add)
1753
1753
Z_PARAM_STRING (in_buf , in_size )
1754
1754
Z_PARAM_OPTIONAL
1755
1755
Z_PARAM_LONG (mode )
1756
- ZEND_PARSE_PARAMETERS_END ( );
1756
+ ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
1757
1757
1758
1758
if (mode != BROTLI_OPERATION_PROCESS &&
1759
1759
mode != BROTLI_OPERATION_FLUSH &&
0 commit comments