From c091e91140249c8988e49e03a96a90990ff6dfb4 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Sun, 20 Mar 2005 09:55:33 +0000 Subject: [PATCH] Fixed SoapFault::details passing --- ext/soap/soap.c | 3 --- 1 file changed, 3 deletions(-) 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) { -- 2.50.1