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