backend/session: open TTY with O_CLOEXEC for direct session

master
emersion 6 years ago
parent 30d3426164
commit d02548d87a
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48

@ -155,7 +155,7 @@ static int vt_handler(int signo, void *data) {
}
static bool setup_tty(struct direct_session *session, struct wl_display *display) {
int fd = open("/dev/tty", O_RDWR);
int fd = open("/dev/tty", O_RDWR | O_CLOEXEC);
if (fd == -1) {
wlr_log_errno(WLR_ERROR, "Cannot open /dev/tty");
return false;

Loading…
Cancel
Save