parent
2bef1f1eb8
commit
a1f0bae53a
|
@ -148,6 +148,7 @@ StringView homedir()
|
||||||
|
|
||||||
bool fd_readable(int fd)
|
bool fd_readable(int fd)
|
||||||
{
|
{
|
||||||
|
kak_assert(fd >= 0);
|
||||||
fd_set rfds;
|
fd_set rfds;
|
||||||
FD_ZERO(&rfds);
|
FD_ZERO(&rfds);
|
||||||
FD_SET(fd, &rfds);
|
FD_SET(fd, &rfds);
|
||||||
|
@ -158,6 +159,7 @@ bool fd_readable(int fd)
|
||||||
|
|
||||||
bool fd_writable(int fd)
|
bool fd_writable(int fd)
|
||||||
{
|
{
|
||||||
|
kak_assert(fd >= 0);
|
||||||
fd_set wfds;
|
fd_set wfds;
|
||||||
FD_ZERO(&wfds);
|
FD_ZERO(&wfds);
|
||||||
FD_SET(fd, &wfds);
|
FD_SET(fd, &wfds);
|
||||||
|
|
|
@ -439,6 +439,7 @@ RemoteUI::~RemoteUI()
|
||||||
// Try to send the remaining data if possible, as it might contain the desired exit status
|
// Try to send the remaining data if possible, as it might contain the desired exit status
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
if (m_socket_watcher.fd() != -1)
|
||||||
send_data(m_socket_watcher.fd(), m_send_buffer);
|
send_data(m_socket_watcher.fd(), m_send_buffer);
|
||||||
}
|
}
|
||||||
catch (disconnected&)
|
catch (disconnected&)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user