Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 20790 invoked from network); 22 Feb 2006 15:15:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 22 Feb 2006 15:15:55 -0000 Received: (qmail 79996 invoked by uid 500); 22 Feb 2006 15:15:51 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 79807 invoked by uid 500); 22 Feb 2006 15:15:50 -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 79766 invoked by uid 99); 22 Feb 2006 15:15:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Feb 2006 07:15:50 -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 [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 22 Feb 2006 07:15:49 -0800 Received: (qmail 20439 invoked by uid 65534); 22 Feb 2006 15:15:28 -0000 Message-ID: <20060222151528.20434.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r379787 - /webservices/axis/trunk/c/src/common/AxisTrace.cpp Date: Wed, 22 Feb 2006 15:15:28 -0000 To: axis-cvs@ws.apache.org From: dicka@apache.org X-Mailer: svnmailer-1.0.6 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dicka Date: Wed Feb 22 07:15:26 2006 New Revision: 379787 URL: http://svn.apache.org/viewcvs?rev=379787&view=rev Log: AXISCPP-933 Resolve problem of trace file handle not be correctly closed when using start up trace but not runtime trace. Modified: webservices/axis/trunk/c/src/common/AxisTrace.cpp Modified: webservices/axis/trunk/c/src/common/AxisTrace.cpp URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/common/AxisTrace.cpp?rev=379787&r1=379786&r2=379787&view=diff ============================================================================== --- webservices/axis/trunk/c/src/common/AxisTrace.cpp (original) +++ webservices/axis/trunk/c/src/common/AxisTrace.cpp Wed Feb 22 07:15:26 2006 @@ -96,6 +96,7 @@ traceLineInternal("Closing the startup trace file"); } delete m_fileTrace; + m_fileTrace = NULL; } m_bLoggingOn = STATE_OFF;