From: GNU Libc Maintainers Date: Tue, 4 Oct 2022 05:07:58 +0000 (+0100) Subject: git-spawni-reauth X-Git-Tag: archive/raspbian/2.35-2+rpi1^2~76 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9795210d756afd9a161a4ad8bc0e0d410853b711;p=glibc.git git-spawni-reauth Committed for 2.36 commit eff158b75dee466ac0c37a17b2165072ee0b7aeb Author: Samuel Thibault Date: Thu May 5 02:14:43 2022 +0200 hurd spawni: Fix reauthenticating closed fds When an fd is closed, the port cell remains, but the port becomes MACH_PORT_NULL, so we have to guard against it. Gbp-Pq: Topic hurd-i386 Gbp-Pq: Name git-spawni-reauth.diff --- diff --git a/sysdeps/mach/hurd/spawni.c b/sysdeps/mach/hurd/spawni.c index f19b68841..ffc62e660 100644 --- a/sysdeps/mach/hurd/spawni.c +++ b/sysdeps/mach/hurd/spawni.c @@ -154,7 +154,7 @@ __spawni (pid_t *pid, const char *file, reauthenticated, or was newly opened on behalf of the child. */ error_t reauthenticate_fd (int fd) { - if (dtable_cells[fd] != NULL) + if (dtable_cells[fd] != NULL && dtable[fd] != MACH_PORT_NULL) { file_t newfile; mach_port_t ref = __mach_reply_port ();