Commit 09dd7b5f authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo Committed by GitHub
Browse files

Merge pull request #4101 from dvirsky/fix_modules_reply_len

Proposed fix to #4100
parents eddd8d34 86e564e9
...@@ -3331,6 +3331,7 @@ void moduleHandleBlockedClients(void) { ...@@ -3331,6 +3331,7 @@ void moduleHandleBlockedClients(void) {
bc->reply_client->bufpos); bc->reply_client->bufpos);
if (listLength(bc->reply_client->reply)) if (listLength(bc->reply_client->reply))
listJoin(c->reply,bc->reply_client->reply); listJoin(c->reply,bc->reply_client->reply);
c->reply_bytes += bc->reply_client->reply_bytes;
} }
freeClient(bc->reply_client); freeClient(bc->reply_client);
......
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