@@ -397,11 +397,11 @@ PHP_FUNCTION(stream_bucket_make_writeable)
397
397
398
398
ZEND_PARSE_PARAMETERS_START (1 , 1 )
399
399
Z_PARAM_RESOURCE (zbrigade )
400
- ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
400
+ ZEND_PARSE_PARAMETERS_END ( );
401
401
402
402
if ((brigade = (php_stream_bucket_brigade * )zend_fetch_resource (
403
403
Z_RES_P (zbrigade ), PHP_STREAM_BRIGADE_RES_NAME , le_bucket_brigade )) == NULL ) {
404
- RETURN_FALSE ;
404
+ return ;
405
405
}
406
406
407
407
ZVAL_NULL (return_value );
@@ -429,7 +429,7 @@ static void php_stream_bucket_attach(int append, INTERNAL_FUNCTION_PARAMETERS)
429
429
ZEND_PARSE_PARAMETERS_START (2 , 2 )
430
430
Z_PARAM_RESOURCE (zbrigade )
431
431
Z_PARAM_OBJECT (zobject )
432
- ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
432
+ ZEND_PARSE_PARAMETERS_END ( );
433
433
434
434
if (NULL == (pzbucket = zend_hash_str_find (Z_OBJPROP_P (zobject ), "bucket" , sizeof ("bucket" )- 1 ))) {
435
435
php_error_docref (NULL , E_WARNING , "Object has no bucket property" );
@@ -438,11 +438,11 @@ static void php_stream_bucket_attach(int append, INTERNAL_FUNCTION_PARAMETERS)
438
438
439
439
if ((brigade = (php_stream_bucket_brigade * )zend_fetch_resource (
440
440
Z_RES_P (zbrigade ), PHP_STREAM_BRIGADE_RES_NAME , le_bucket_brigade )) == NULL ) {
441
- RETURN_FALSE ;
441
+ return ;
442
442
}
443
443
444
444
if ((bucket = (php_stream_bucket * )zend_fetch_resource_ex (pzbucket , PHP_STREAM_BUCKET_RES_NAME , le_bucket )) == NULL ) {
445
- RETURN_FALSE ;
445
+ return ;
446
446
}
447
447
448
448
if (NULL != (pzdata = zend_hash_str_find (Z_OBJPROP_P (zobject ), "data" , sizeof ("data" )- 1 )) && Z_TYPE_P (pzdata ) == IS_STRING ) {
@@ -500,7 +500,7 @@ PHP_FUNCTION(stream_bucket_new)
500
500
ZEND_PARSE_PARAMETERS_START (2 , 2 )
501
501
Z_PARAM_ZVAL (zstream )
502
502
Z_PARAM_STRING (buffer , buffer_len )
503
- ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
503
+ ZEND_PARSE_PARAMETERS_END ( );
504
504
505
505
php_stream_from_zval (stream , zstream );
506
506
@@ -560,7 +560,7 @@ PHP_FUNCTION(stream_filter_register)
560
560
ZEND_PARSE_PARAMETERS_START (2 , 2 )
561
561
Z_PARAM_STR (filtername )
562
562
Z_PARAM_STR (classname )
563
- ZEND_PARSE_PARAMETERS_END_EX ( RETURN_FALSE );
563
+ ZEND_PARSE_PARAMETERS_END ( );
564
564
565
565
RETVAL_FALSE ;
566
566
0 commit comments