diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6dd4c8e995..30e8931e11 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-19 15:37 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/vm/thread.c + ! fixed yest another stupid typo in new OS2 conditional variable + code + 2009-02-19 15:18 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * utils/hbmk/hbmk2.prg + Added new flags to replace -bldflags[-]: diff --git a/harbour/source/vm/thread.c b/harbour/source/vm/thread.c index ec5c87e378..07b67a5d0f 100644 --- a/harbour/source/vm/thread.c +++ b/harbour/source/vm/thread.c @@ -222,7 +222,7 @@ static void _hb_thread_wait_del( HB_COND_T * cond, PHB_WAIT_LIST pWaiting ) { cond->waiters = pWaiting->next; if( pWaiting == cond->waiters ) - pWaiting = NULL; + cond->waiters = NULL; } }