From 136594822fb1cd8e7067685d10b34a1338410027 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Fri, 13 Feb 2015 14:53:13 +0800 Subject: [PATCH] Fixed use of uninitliazed pointer --- ext/soap/soap.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 6792c325ac..64c79c80d6 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -2081,7 +2081,6 @@ static void soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeade xmlDocPtr doc_return; zval *agent_name; int use_http_error_status = 1; - zend_string *server; soap_version = SOAP_GLOBAL(soap_version); @@ -2096,7 +2095,6 @@ static void soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeade use_http_error_status = 0; } } - zend_string_release(server); /* Want to return HTTP 500 but apache wants to over write our fault code with their own handling... Figure this out later -- 2.50.1