Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 2075 invoked from network); 13 Nov 2006 03:13:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Nov 2006 03:13:27 -0000 Received: (qmail 18113 invoked by uid 500); 13 Nov 2006 03:13:37 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 17848 invoked by uid 500); 13 Nov 2006 03:13:36 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 17837 invoked by uid 500); 13 Nov 2006 03:13:36 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 17834 invoked by uid 99); 13 Nov 2006 03:13:36 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 12 Nov 2006 19:13:36 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 12 Nov 2006 19:13:25 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 8DF581A9846; Sun, 12 Nov 2006 19:12:55 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r474121 - /webservices/axis2/trunk/c/modules/core/description/msg.c Date: Mon, 13 Nov 2006 03:12:55 -0000 To: axis2-cvs@ws.apache.org From: samisa@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061113031255.8DF581A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: samisa Date: Sun Nov 12 19:12:54 2006 New Revision: 474121 URL: http://svn.apache.org/viewvc?view=rev&rev=474121 Log: Fixed memory leak related to flow Modified: webservices/axis2/trunk/c/modules/core/description/msg.c Modified: webservices/axis2/trunk/c/modules/core/description/msg.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/msg.c?view=diff&rev=474121&r1=474120&r2=474121 ============================================================================== --- webservices/axis2/trunk/c/modules/core/description/msg.c (original) +++ webservices/axis2/trunk/c/modules/core/description/msg.c Sun Nov 12 19:12:54 2006 @@ -212,7 +212,7 @@ AXIS2_ENV_CHECK(env, AXIS2_FAILURE); msg_impl = AXIS2_INTF_TO_IMPL(msg); - /*if (msg_impl->flow) + if (msg_impl->flow) { int i = 0; int size = 0; @@ -231,7 +231,7 @@ } AXIS2_ARRAY_LIST_FREE(msg_impl->flow, env); msg_impl->flow = NULL; - }*/ + } if (msg_impl->soap_headers) { --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org