From 17753fd3756d4f52b4ba0f6aa95b96da00c22e40 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Mon, 13 Sep 2004 15:52:46 +0000 Subject: [PATCH] - added missing initialization of fInUse such that setting up a threaded test won't fail randomly. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8931 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/cppunit/ThreadedTestCase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/cppunit/ThreadedTestCase.cpp b/src/tools/cppunit/ThreadedTestCase.cpp index 2d753cc959..788765fd47 100644 --- a/src/tools/cppunit/ThreadedTestCase.cpp +++ b/src/tools/cppunit/ThreadedTestCase.cpp @@ -7,6 +7,7 @@ _EXPORT BThreadedTestCase::BThreadedTestCase(string name, string progressSeparator) : BTestCase(name) + , fInUse(false) , fProgressSeparator(progressSeparator) , fUpdateLock(new BLocker()) {