fix crash in pthread_cond_wait mutex-locked check
authorRich Felker <dalias@aerifal.cx>
Tue, 27 Sep 2011 22:56:29 +0000 (18:56 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 27 Sep 2011 22:56:29 +0000 (18:56 -0400)
commit3ac092bd7d700c6316c64660e2a722a2f85652a5
tree16b292d464228b0757c91fc1664cd5e87defb19e
parent823813e3f4d7a8d3848e092bcdf975c8b94b6194
fix crash in pthread_cond_wait mutex-locked check

it was assuming the result of the condition it was supposed to be
checking for, i.e. that the thread ptr had already been initialized by
pthread_mutex_lock. use the slower call to be safe.
src/thread/pthread_cond_timedwait.c