From 1067e607effc3e617fb7841db359f576c71b9c08 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 8 Dec 2005 19:57:30 +0000 Subject: [PATCH] - no pass by ref in HttpRequestPool::__construct(), please --- http_requestpool_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_requestpool_object.c b/http_requestpool_object.c index 902574d..3a6d015 100644 --- a/http_requestpool_object.c +++ b/http_requestpool_object.c @@ -39,7 +39,7 @@ extern PHPAPI zend_class_entry *spl_ce_Countable; #define HTTP_EMPTY_ARGS(method, ret_ref) HTTP_EMPTY_ARGS_EX(HttpRequestPool, method, ret_ref) #define HTTP_REQPOOL_ME(method, visibility) PHP_ME(HttpRequestPool, method, HTTP_ARGS(HttpRequestPool, method), visibility) -HTTP_BEGIN_ARGS_AR(HttpRequestPool, __construct, 0, 0) +HTTP_BEGIN_ARGS(__construct, 0) HTTP_ARG_OBJ(HttpRequest, request0, 0) HTTP_ARG_OBJ(HttpRequest, request1, 0) HTTP_ARG_OBJ(HttpRequest, requestN, 0) -- 2.30.2