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

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));