Commit 1b7407fa authored by antirez's avatar antirez
Browse files

Aesthetic change to #5962 to conform to Redis style.

parent 3bbf9747
...@@ -3705,9 +3705,7 @@ void moduleHandleBlockedClients(void) { ...@@ -3705,9 +3705,7 @@ void moduleHandleBlockedClients(void) {
* replies to send to the client in a thread safe context. * replies to send to the client in a thread safe context.
* We need to glue such replies to the client output buffer and * We need to glue such replies to the client output buffer and
* free the temporary client we just used for the replies. */ * free the temporary client we just used for the replies. */
if (c) { if (c) AddReplyFromClient(c, bc->reply_client);
AddReplyFromClient(c, bc->reply_client);
}
freeClient(bc->reply_client); freeClient(bc->reply_client);
if (c != NULL) { if (c != NULL) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment