From: Michael Wallner Date: Thu, 15 Sep 2005 15:10:41 +0000 (+0000) Subject: - no forced pass_by_ref for objects X-Git-Tag: RELEASE_0_14_0~24 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=496deabe5e41f1706a472f5c1e9af7cc741b1243;ds=sidebyside - no forced pass_by_ref for objects --- diff --git a/php_http_std_defs.h b/php_http_std_defs.h index 74db7d4..a2b753f 100644 --- a/php_http_std_defs.h +++ b/php_http_std_defs.h @@ -305,7 +305,7 @@ typedef int STATUS; # define HTTP_EMPTY_ARGS_EX(class, method, ret_ref) HTTP_BEGIN_ARGS_EX(class, method, ret_ref, 0) HTTP_END_ARGS # define HTTP_ARGS(class, method) args_for_ ##class## _ ##method # define HTTP_ARG_VAL(name, pass_ref) ZEND_ARG_INFO(pass_ref, name) -# define HTTP_ARG_OBJ(class, name, allow_null) ZEND_ARG_OBJ_INFO(1, name, class, allow_null) +# define HTTP_ARG_OBJ(class, name, allow_null) ZEND_ARG_OBJ_INFO(0, name, class, allow_null) #endif #ifdef ZEND_ENGINE_2