From 91aaefe043e8afb4589a5aec2d7b6dd94d724f18 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Tue, 16 Nov 2004 21:04:27 +0000 Subject: [PATCH] MFH: Fixed possible usage of un-initialized variable. --- ext/soap/soap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/soap/soap.c b/ext/soap/soap.c index b35ac6ff2b..6eef78b505 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -1266,7 +1266,7 @@ PHP_METHOD(SoapServer, handle) int soap_version, old_soap_version; sdlPtr old_sdl = NULL; soapServicePtr service; - xmlDocPtr doc_request, doc_return; + xmlDocPtr doc_request=NULL, doc_return; zval function_name, **params, **raw_post, *soap_obj, retval, **server_vars; char *fn_name, cont_len[30]; int num_params = 0, size, i, call_status = 0; -- 2.50.1