From: Dmitry Stogov Date: Tue, 4 Mar 2008 12:47:18 +0000 (+0000) Subject: Fixed SIGSEGV because of access to uninitialized data X-Git-Tag: BEFORE_NEW_PARAMETER_PARSE~706 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29eac881b0b75aa58ba1e75595f5ab74336164db;p=php Fixed SIGSEGV because of access to uninitialized data --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 42a23c8891..2d09138f48 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; }