Remote control: Fix holding a remote control socket open causing the kitty I/O thread to go into a loop and not respond on other remote control sockets

This commit is contained in:
Kovid Goyal
2025-05-22 16:16:39 +05:30
parent 68e3dd6f34
commit b2b8ede0a9
2 changed files with 2 additions and 1 deletions

View File

@@ -1953,7 +1953,6 @@ talk_loop(void *data) {
p->read.finished = true;
p->write.failed = true; p->write.used = 0;
}
break;
}
}
} else if (ret < 0) { if (errno != EAGAIN && errno != EINTR) perror("poll() on talk fds failed"); }