From 7d4fd3fd380a7fe9b497684775a38190786b93ba Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 27 Nov 2008 19:01:23 +0000 Subject: Fixed bug #46409 (__invoke method called outside of object context when using array_map) --- ext/soap/soap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/soap/soap.c') diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 09faf2345a..78f4326e4e 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -999,7 +999,7 @@ PHP_METHOD(SoapFault, __toString) fci.function_table = &Z_OBJCE_P(getThis())->function_table; fci.function_name = &fname; fci.symbol_table = NULL; - fci.object_pp = &getThis(); + fci.object_ptr = getThis(); fci.retval_ptr_ptr = &trace; fci.param_count = 0; fci.params = NULL; -- cgit v1.2.1