php8: remove fci.no_separation

This commit is contained in:
cdosoftei 2020-08-10 15:11:33 -04:00 committed by Bob Weinand
parent 0b40ad9f51
commit 8b6e0ec74e

View File

@ -1322,7 +1322,6 @@ static int php_uv_do_callback(zval *retval_ptr, php_uv_cb_t *callback, zval *par
callback->fci.params = params;
callback->fci.retval = retval_ptr;
callback->fci.param_count = param_count;
callback->fci.no_separation = 1;
error = zend_call_function(&callback->fci, &callback->fcc);
} else {
@ -1347,7 +1346,6 @@ static int php_uv_do_callback2(zval *retval_ptr, php_uv_t *uv, zval *params, int
uv->callback[type]->fci.params = params;
uv->callback[type]->fci.retval = retval_ptr;
uv->callback[type]->fci.param_count = param_count;
uv->callback[type]->fci.no_separation = 1;
if (zend_call_function(&uv->callback[type]->fci, &uv->callback[type]->fcc) != SUCCESS) {
error = -1;
@ -1413,7 +1411,6 @@ static int php_uv_do_callback3(zval *retval_ptr, php_uv_t *uv, zval *params, int
uv->callback[type]->fci.params = params;
uv->callback[type]->fci.retval = retval_ptr;
uv->callback[type]->fci.param_count = param_count;
uv->callback[type]->fci.no_separation = 1;
uv->callback[type]->fci.object = NULL;
#if PHP_VERSION_ID >= 70300
uv->callback[type]->fci.size = sizeof(zend_fcall_info);