mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 08:41:04 +00:00
Fix bug in gluing a deferred multi bulk length to the next reply chunk
This commit is contained in:
parent
3ab203762f
commit
49128f0b9d
@ -253,9 +253,9 @@ void setDeferredMultiBulkLength(redisClient *c, void *node, long length) {
|
|||||||
if (ln->next != NULL) {
|
if (ln->next != NULL) {
|
||||||
next = listNodeValue(ln->next);
|
next = listNodeValue(ln->next);
|
||||||
|
|
||||||
/* Only glue when the next node is an sds */
|
/* Only glue when the next node is non-NULL (an sds in this case) */
|
||||||
if (next->ptr != NULL) {
|
if (next->ptr != NULL) {
|
||||||
len->ptr = sdscat(len->ptr,next->ptr);
|
len->ptr = sdscatlen(len->ptr,next->ptr,sdslen(next->ptr));
|
||||||
listDelNode(c->reply,ln->next);
|
listDelNode(c->reply,ln->next);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user