mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
Fix crash when pipelining several blocking commands.
This commit is contained in:
parent
3d9704d335
commit
64f201c2aa
@ -793,6 +793,9 @@ int processMultibulkBuffer(redisClient *c) {
|
|||||||
void processInputBuffer(redisClient *c) {
|
void processInputBuffer(redisClient *c) {
|
||||||
/* Keep processing while there is something in the input buffer */
|
/* Keep processing while there is something in the input buffer */
|
||||||
while(sdslen(c->querybuf)) {
|
while(sdslen(c->querybuf)) {
|
||||||
|
/* Immediately abort if the client is in the middle of something. */
|
||||||
|
if (c->flags & REDIS_BLOCKED) return;
|
||||||
|
|
||||||
/* REDIS_CLOSE_AFTER_REPLY closes the connection once the reply is
|
/* REDIS_CLOSE_AFTER_REPLY closes the connection once the reply is
|
||||||
* written to the client. Make sure to not let the reply grow after
|
* written to the client. Make sure to not let the reply grow after
|
||||||
* this flag has been set (i.e. don't process more commands). */
|
* this flag has been set (i.e. don't process more commands). */
|
||||||
|
Loading…
Reference in New Issue
Block a user