fixed small bug in ThreadedList.

This commit is contained in:
rachytski 2012-12-18 22:39:07 +03:00 committed by Alex Zolotarev
parent d0b8be1501
commit 3841eefecc

View file

@ -44,9 +44,8 @@ public:
bool doSignal = m_list.empty();
m_isEmpty = doSignal;
m_list.push_back(t);
m_isEmpty = false;
if (doSignal)
m_Cond.Signal();
@ -58,9 +57,8 @@ public:
bool doSignal = m_list.empty();
m_isEmpty = doSignal;
m_list.push_front(t);
m_isEmpty = false;
if (doSignal)
m_Cond.Signal();