Merge pull request #1154 from ascent12/fix-1152

Removed explicitly setting file descriptors to -1
This commit is contained in:
Drew DeVault 2017-04-07 08:49:47 -04:00 committed by GitHub
commit cf95aebf69

View file

@ -194,15 +194,12 @@ int ipc_client_handle_readable(int client_fd, uint32_t mask, void *data) {
if (mask & WLC_EVENT_ERROR) { if (mask & WLC_EVENT_ERROR) {
sway_log(L_ERROR, "IPC Client socket error, removing client"); sway_log(L_ERROR, "IPC Client socket error, removing client");
client->fd = -1;
ipc_client_disconnect(client); ipc_client_disconnect(client);
return 0; return 0;
} }
if (mask & WLC_EVENT_HANGUP) { if (mask & WLC_EVENT_HANGUP) {
sway_log(L_DEBUG, "Client %d hung up", client->fd); sway_log(L_DEBUG, "Client %d hung up", client->fd);
close(client->fd);
client->fd = -1;
ipc_client_disconnect(client); ipc_client_disconnect(client);
return 0; return 0;
} }