test: Plug memory leaks and stack-use-after-scope

This commit is contained in:
MarcoFalke 2018-02-17 14:29:56 -05:00
parent 27c59dc502
commit fadb39ca62
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
3 changed files with 13 additions and 9 deletions

View file

@ -406,11 +406,11 @@ BOOST_AUTO_TEST_CASE(test_CheckQueueControl_Locks)
boost::thread_group tg;
std::mutex m;
std::condition_variable cv;
bool has_lock{false};
bool has_tried{false};
bool done{false};
bool done_ack{false};
{
bool has_lock {false};
bool has_tried {false};
bool done {false};
bool done_ack {false};
std::unique_lock<std::mutex> l(m);
tg.create_thread([&]{
CCheckQueueControl<FakeCheck> control(queue.get());