Преглед изворни кода

Xvnc: do not use dup2() to create a file descriptor for -inetd option

Use dup() instead to get an available file descriptor to avoid hijacking
already existing descriptor.

Fixes #1709
pull/1714/head
Jan Grulich пре 4 месеци
родитељ
комит
7a9773a303
1 измењених фајлова са 4 додато и 2 уклоњено
  1. 4
    2
      unix/xserver/hw/vnc/xvnc.c

+ 4
- 2
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

Loading…
Откажи
Сачувај