fix invalid free of partial addrinfo list with multiple services
[musl] / src / process / fork.c
index 43c52bc..11286ef 100644 (file)
@@ -18,17 +18,19 @@ pid_t fork(void)
        __fork_handler(-1);
        __block_all_sigs(&set);
 #ifdef SYS_fork
-       ret = syscall(SYS_fork);
+       ret = __syscall(SYS_fork);
 #else
-       ret = syscall(SYS_clone, SIGCHLD, 0);
+       ret = __syscall(SYS_clone, SIGCHLD, 0);
 #endif
-       if (libc.has_thread_pointer && !ret) {
+       if (!ret) {
                pthread_t self = __pthread_self();
                self->tid = __syscall(SYS_gettid);
-               memset(&self->robust_list, 0, sizeof self->robust_list);
+               self->robust_list.off = 0;
+               self->robust_list.pending = 0;
+               self->next = self->prev = self;
                libc.threads_minus_1 = 0;
        }
        __restore_sigs(&set);
        __fork_handler(!ret);
-       return ret;
+       return __syscall_ret(ret);
 }