From 76faa5ff6b89e89c0b5c75054fbc8daa19d286a7 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 4 Mar 2008 12:47:36 +0000 Subject: [PATCH] Fixed SIGSEGV because of access to uninitialized data --- ext/soap/soap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/soap/soap.c b/ext/soap/soap.c index ff01c7d3c0..c23a96d6b4 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -602,6 +602,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; } -- 2.40.0