We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dccca7 commit 2eb90ceCopy full SHA for 2eb90ce
src/networking.c
@@ -326,9 +326,7 @@ int prepareClientToWrite(client *c) {
326
327
/* Schedule the client to write the output buffers to the socket, unless
328
* it should already be setup to do so (it has already pending data). */
329
- if (!clientHasPendingReplies(c)) {
330
- putClientInPendingWriteQueue(c);
331
- }
+ if (!clientHasPendingReplies(c)) putClientInPendingWriteQueue(c);
332
333
/* Authorize the caller to queue in the output buffer of this client. */
334
return C_OK;
0 commit comments