From 15a5f61cf4ac1961c20b61ba58e19c64a653064c Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 22 Apr 2015 21:46:13 +0300 Subject: Use fast method to check if first arguments should be passed by reference (not tested onbig endian). --- ext/soap/soap.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/soap/soap.c') diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 883e0ac541..120274b272 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -668,6 +668,7 @@ PHP_MINIT_FUNCTION(soap) fe.prototype = NULL; fe.num_args = 2; fe.arg_info = NULL; + zend_set_function_arg_flags((zend_function*)&fe); INIT_OVERLOADED_CLASS_ENTRY(ce, PHP_SOAP_CLIENT_CLASSNAME, soap_client_functions, (zend_function *)&fe, NULL, NULL); -- cgit v1.2.1