From: Ilia Alshanetsky Date: Tue, 16 Nov 2004 21:04:27 +0000 (+0000) Subject: MFH: Fixed possible usage of un-initialized variable. X-Git-Tag: php-5.0.3RC1~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91aaefe043e8afb4589a5aec2d7b6dd94d724f18;p=php MFH: Fixed possible usage of un-initialized variable. --- 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;