mirror of
https://github.com/electron/electron.git
synced 2026-01-29 01:08:18 -05:00
* fix: ensure that file descriptors 0/1/2 are opened at startup This fixes an issue where the gpu subprocess was writing messages to a random pipe or socket. The standard file desciptors are closed in chromium's subprocesses because of an unfortunate interaction with libuv's tty handling code leaving them with the FD_CLOEXEC flag. * style: fix lint warnings