AClientConnection: Fix double exit

This commit is contained in:
Robin Burchell 2019-07-17 09:44:07 +02:00 committed by Andreas Kling
parent fd6cafaa84
commit ac4f8fe350
Notes: sideshowbarker 2024-07-19 13:13:27 +09:00

View File

@ -57,7 +57,6 @@ bool AClientConnection::drain_messages_from_server()
if (nread == 0) {
dbgprintf("EOF on IPC fd\n");
exit(1);
exit(-1);
return false;
}
ASSERT(nread == sizeof(message));