From: Dmitry Stogov Date: Sun, 20 Mar 2005 09:55:47 +0000 (+0000) Subject: Fixed SoapFault::details passing X-Git-Tag: php-5.0.1b1~736 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=713622d363fa08f99064d0e95d237bec77f1417f;p=php Fixed SoapFault::details passing --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index e1efcb66d9..41c639c0aa 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -2708,9 +2708,6 @@ static void set_soap_fault(zval *obj, char *fault_code, char *fault_string, char add_property_string(obj, "faultactor", fault_actor, 1); } if (fault_detail != NULL) { -#ifdef ZEND_ENGINE_2 - fault_detail->refcount--; -#endif add_property_zval(obj, "detail", fault_detail); } if (name != NULL) {