All of these clearly do not need separation support.
fci.retval = &retval;
fci.param_count = 2;
fci.params = argv;
- fci.no_separation = 0;
+ fci.no_separation = 1;
ch->in_callback = 1;
error = zend_call_function(&fci, &t->fci_cache);
fci.retval = &retval;
fci.param_count = 3;
fci.params = argv;
- fci.no_separation = 0;
+ fci.no_separation = 1;
ch->in_callback = 1;
error = zend_call_function(&fci, &t->fci_cache);
fci.retval = &retval;
fci.param_count = 5;
fci.params = argv;
- fci.no_separation = 0;
+ fci.no_separation = 1;
ch->in_callback = 1;
error = zend_call_function(&fci, &t->fci_cache);
fci.retval = &retval;
fci.param_count = 3;
fci.params = argv;
- fci.no_separation = 0;
+ fci.no_separation = 1;
ch->in_callback = 1;
error = zend_call_function(&fci, &t->fci_cache);
fci.retval = &retval;
fci.param_count = 2;
fci.params = argv;
- fci.no_separation = 0;
+ fci.no_separation = 1;
ch->in_callback = 1;
error = zend_call_function(&fci, &t->fci_cache);
fci.object = NULL;
fci.retval = &retval;
- fci.no_separation = 0;
+ fci.no_separation = 1;
if (!zend_make_callable(&fci.function_name, &callable)) {
php_error_docref(NULL, E_WARNING, "Unable to call handler %s()", ZSTR_VAL(callable));
fci->retval = &retval;
fci->param_count = 1;
fci->params = &arg;
- fci->no_separation = 0;
+ fci->no_separation = 1;
if (zend_call_function(fci, fcc) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) {
if (EXPECTED(Z_TYPE(retval) == IS_STRING)) {
fci->retval = &retval;
fci->param_count = 5;
fci->params = argv;
- fci->no_separation = 0;
+ fci->no_separation = 1;
int authreturn = SQLITE_DENY;
fci.retval = retval;
fci.param_count = argc;
fci.params = argv;
- fci.no_separation = 0;
- /*fci.function_handler_cache = &function_ptr;*/
+ fci.no_separation = 1;
result = zend_call_function(&fci, NULL);
if (result == FAILURE) {
ZVAL_COPY_VALUE(&fci.function_name, &handler);
fci.object = NULL;
fci.retval = &retval;
- fci.no_separation = 0;
- /*fci.function_handler_cache = &function_ptr;*/
+ fci.no_separation = 1;
if (!zend_make_callable(&handler, &callable)) {
if (!EG(exception)) {
php_error_docref(NULL, E_WARNING, "Unable to call handler %s()", ZSTR_VAL(callable));