mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
(__pthread_cond_init): Handle NULL cond_attr parameter.
This commit is contained in:
@ -31,7 +31,8 @@ __pthread_cond_init (cond, cond_attr)
|
||||
struct pthread_condattr *icond_attr = (struct pthread_condattr *) cond_attr;
|
||||
|
||||
cond->__data.__lock = LLL_MUTEX_LOCK_INITIALIZER;
|
||||
cond->__data.__clock = (icond_attr->value & 0xfe) >> 1;
|
||||
cond->__data.__clock = (icond_attr == NULL
|
||||
? CLOCK_REALTIME : (icond_attr->value & 0xfe) >> 1);
|
||||
cond->__data.__total_seq = 0;
|
||||
cond->__data.__wakeup_seq = 0;
|
||||
cond->__data.__woken_seq = 0;
|
||||
|
Reference in New Issue
Block a user