You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2006/02/22 16:15:28 UTC

svn commit: r379787 - /webservices/axis/trunk/c/src/common/AxisTrace.cpp

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;