From 1c0ed3433e25c5b51138898c11ac6e73288b0ca8 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sat, 24 Apr 2010 16:59:09 +0000 Subject: [PATCH] - Fixed memory leak --- ext/soap/soap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/soap/soap.c b/ext/soap/soap.c index ff430cabd5..00fe814db5 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -1699,6 +1699,7 @@ PHP_METHOD(SoapServer, handle) doc_request = soap_xmlParseMemory(post_data, post_data_length); } } else { + zval_ptr_dtor(&retval); return; } } else { -- 2.40.0