diff options
| author | Dmitry Stogov <dmitry@php.net> | 2008-11-27 19:01:23 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2008-11-27 19:01:23 +0000 |
| commit | 7d4fd3fd380a7fe9b497684775a38190786b93ba (patch) | |
| tree | 0ff7829b47dc4969052284b9ad9411c465bd424e /ext/soap/soap.c | |
| parent | d741138a4639adb14cb31ea519ded0e0432c9e9a (diff) | |
| download | php-git-7d4fd3fd380a7fe9b497684775a38190786b93ba.tar.gz | |
Fixed bug #46409 (__invoke method called outside of object context when using array_map)
Diffstat (limited to 'ext/soap/soap.c')
| -rw-r--r-- | ext/soap/soap.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
