From: Rich Felker Date: Tue, 27 Sep 2011 22:56:29 +0000 (-0400) Subject: fix crash in pthread_cond_wait mutex-locked check X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=3ac092bd7d700c6316c64660e2a722a2f85652a5;hp=3ac092bd7d700c6316c64660e2a722a2f85652a5 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. ---