X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/04950a9e4dfb74a132e523ccbb7932a2394b832a..acfe3675e3c5ab8ee2ca07642334d9468cfc4d39:/src/bitops.c diff --git a/src/bitops.c b/src/bitops.c index deec0971..39d24ab7 100644 --- a/src/bitops.c +++ b/src/bitops.c @@ -327,10 +327,9 @@ void bitopCommand(redisClient *c) { /* BITCOUNT key [start end] */ void bitcountCommand(redisClient *c) { robj *o; - long start, end; + long start, end, strlen; unsigned char *p; char llbuf[32]; - size_t strlen; /* Lookup, check for type, and return 0 for non existing keys. */ if ((o = lookupKeyReadOrReply(c,c->argv[1],shared.czero)) == NULL || @@ -357,7 +356,7 @@ void bitcountCommand(redisClient *c) { if (end < 0) end = strlen+end; if (start < 0) start = 0; if (end < 0) end = 0; - if ((unsigned)end >= strlen) end = strlen-1; + if (end >= strlen) end = strlen-1; } else if (c->argc == 2) { /* The whole string. */ start = 0;