1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

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