summaryrefslogtreecommitdiff
path: root/src/msvc6/testrunner/ActiveTest.cpp
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2002-05-07 20:57:25 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2002-05-07 20:57:25 +0000
commit60979bfc4903e27e0d90b60db0a2d95bfabb7aea (patch)
tree30a0b7a5aa4b9bb55f091cb0e5e3ca8b7030fa3f /src/msvc6/testrunner/ActiveTest.cpp
parent2159f78d59e9cedede0ef5b51d4f37dd1b3489b9 (diff)
downloadcppunit-60979bfc4903e27e0d90b60db0a2d95bfabb7aea.tar.gz
Src/DllPlugInTester/CommandLineParser.
src/DllPlugInTester/CommandLineParser.cpp: fixed compilation issue. * src/msvc6/TestRunner/ActiveTest.h: * src/msvc6/TestRunner/ActiveTest.cpp: reindented. bugfix: thread handle resource leak (bug #553424).
Diffstat (limited to 'src/msvc6/testrunner/ActiveTest.cpp')
-rw-r--r--src/msvc6/testrunner/ActiveTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msvc6/testrunner/ActiveTest.cpp b/src/msvc6/testrunner/ActiveTest.cpp
index 91eab6d..c919b8c 100644
--- a/src/msvc6/testrunner/ActiveTest.cpp
+++ b/src/msvc6/testrunner/ActiveTest.cpp
@@ -39,7 +39,7 @@ ActiveTest::threadFunction( LPVOID thisInstance )
test->run ();
::CloseHandle( test->m_threadHandle );
- test->m_threadHandle = INVALID_HANDLE_VALUE
+ test->m_threadHandle = INVALID_HANDLE_VALUE;
test->m_runCompleted.SetEvent();