From 88c1168941e03b7ac0728002bbf0fc39f6c62d20 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 6 Feb 2004 11:56:03 +0000 Subject: Free XML documents after WSDL parsing (they no longer need). --- ext/soap/php_soap.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'ext/soap/php_soap.h') diff --git a/ext/soap/php_soap.h b/ext/soap/php_soap.h index a0e48936f9..3986cc064c 100644 --- a/ext/soap/php_soap.h +++ b/ext/soap/php_soap.h @@ -139,10 +139,9 @@ struct _soapService { #define SOAP_1_2_ACTOR_UNLIMATERECEIVER "http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver" ZEND_BEGIN_MODULE_GLOBALS(soap) - HashTable *defEncNs; - HashTable *defEncPrefix; - HashTable *defEnc; - HashTable *defEncIndex; + HashTable defEncNs; /* mapping of default namespaces to prefixes */ + HashTable defEnc; + HashTable defEncIndex; HashTable *sdls; HashTable *overrides; int cur_uniq_ns; -- cgit v1.2.1