From: Dmitry Stogov Date: Tue, 4 Mar 2008 12:23:10 +0000 (+0000) Subject: Fixed SIGSEGV because of acess to uninitialized data X-Git-Tag: php-5.2.6RC2~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4068e65ba15212725e59baa9471b6c3223c78fe;p=php Fixed SIGSEGV because of acess to uninitialized data --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 5fda0c95b3..479639eb9d 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -511,6 +511,7 @@ PHP_RINIT_FUNCTION(soap) SOAP_GLOBAL(encoding) = NULL; SOAP_GLOBAL(class_map) = NULL; SOAP_GLOBAL(features) = 0; + SOAP_GLOBAL(ref_map) = NULL; return SUCCESS; }