You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
684 B
18 lines
684 B
diff --git a/unix/xserver/hw/vnc/xvnc.c b/unix/xserver/hw/vnc/xvnc.c
|
|
index f8141959..c5c36539 100644
|
|
--- a/unix/xserver/hw/vnc/xvnc.c
|
|
+++ b/unix/xserver/hw/vnc/xvnc.c
|
|
@@ -366,8 +366,10 @@ ddxProcessArgument(int argc, char *argv[], int i)
|
|
if (strcmp(argv[i], "-inetd") == 0) {
|
|
int nullfd;
|
|
|
|
- dup2(0, 3);
|
|
- vncInetdSock = 3;
|
|
+ if ((vncInetdSock = dup(0)) == -1)
|
|
+ FatalError
|
|
+ ("Xvnc error: failed to allocate a new file descriptor for -inetd: %s\n", strerror(errno));
|
|
+
|
|
|
|
/* Avoid xserver >= 1.19's epoll-fd becoming fd 2 / stderr only to be
|
|
replaced by /dev/null by OsInit() because the pollfd is not
|