mirror of
https://github.com/fluencelabs/redis
synced 2025-06-10 15:51:21 +00:00
Fix isHLLObjectOrReply() to handle integer encoded strings.
Close #3766.
This commit is contained in:
@ -1121,6 +1121,7 @@ int isHLLObjectOrReply(client *c, robj *o) {
|
||||
if (checkType(c,o,OBJ_STRING))
|
||||
return C_ERR; /* Error already sent. */
|
||||
|
||||
if (!sdsEncodedObject(o)) goto invalid;
|
||||
if (stringObjectLen(o) < sizeof(*hdr)) goto invalid;
|
||||
hdr = o->ptr;
|
||||
|
||||
|
Reference in New Issue
Block a user