mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 16:51:12 +00:00
Missing return REDIS_ERR added to processMultibulkBuffer().
When we set a protocol error we should return with REDIS_ERR to let the caller know it should stop processing the client. Bug found in a code auditing related to issue #1699.
This commit is contained in:
parent
20c040d364
commit
cb4e2ee9e7
@ -1000,8 +1000,10 @@ int processMultibulkBuffer(redisClient *c) {
|
|||||||
newline = strchr(c->querybuf+pos,'\r');
|
newline = strchr(c->querybuf+pos,'\r');
|
||||||
if (newline == NULL) {
|
if (newline == NULL) {
|
||||||
if (sdslen(c->querybuf) > REDIS_INLINE_MAX_SIZE) {
|
if (sdslen(c->querybuf) > REDIS_INLINE_MAX_SIZE) {
|
||||||
addReplyError(c,"Protocol error: too big bulk count string");
|
addReplyError(c,
|
||||||
|
"Protocol error: too big bulk count string");
|
||||||
setProtocolError(c,0);
|
setProtocolError(c,0);
|
||||||
|
return REDIS_ERR;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user