From: Rich Felker Date: Sun, 17 Jul 2011 03:17:17 +0000 (-0400) Subject: ensure in fork that child gets its own new robust mutex list X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=4ec07e1f60128cdac63bd98e7091240d6e5d888c ensure in fork that child gets its own new robust mutex list --- diff --git a/src/process/fork.c b/src/process/fork.c index a04e8929..7530ff93 100644 --- a/src/process/fork.c +++ b/src/process/fork.c @@ -11,6 +11,7 @@ pid_t fork(void) if (libc.main_thread && !ret) { pthread_t self = __pthread_self(); self->tid = self->pid = syscall(SYS_getpid); + memset(&self->robust_list, 0, sizeof self->robust_list); libc.threads_minus_1 = 0; libc.main_thread = self; }