public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] hurd spawni: Fix reauthenticating closed fds
@ 2022-05-05 0:15 Samuel Thibault
0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2022-05-05 0:15 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=eff158b75dee466ac0c37a17b2165072ee0b7aeb
commit eff158b75dee466ac0c37a17b2165072ee0b7aeb
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
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.
Diff:
---
sysdeps/mach/hurd/spawni.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sysdeps/mach/hurd/spawni.c b/sysdeps/mach/hurd/spawni.c
index f19b688411..ffc62e660e 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 ();
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-05-05 0:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-05 0:15 [glibc] hurd spawni: Fix reauthenticating closed fds Samuel Thibault
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).