From 632766a5612e0ae501787aa83a92eb764133c0fa Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Tue, 7 Jul 2020 08:59:19 +0200 Subject: Disallow separation in a number of callbacks All of these clearly do not need separation support. --- ext/xml/xml.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ext/xml/xml.c') diff --git a/ext/xml/xml.c b/ext/xml/xml.c index f3c877b87e..60bdfb4261 100644 --- a/ext/xml/xml.c +++ b/ext/xml/xml.c @@ -464,8 +464,7 @@ static void xml_call_handler(xml_parser *parser, zval *handler, zend_function *f 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) { -- cgit v1.2.1