modules/RM_StringTruncate: correct reallocate condition
This commit is contained in:
parent
fdc854f20e
commit
336bd45b8a
@ -747,7 +747,7 @@ int RM_StringTruncate(RedisModuleKey *key, size_t newlen) {
|
||||
} else if (newlen < curlen) {
|
||||
sdsrange(key->value->ptr,0,newlen-1);
|
||||
/* If the string is too wasteful, reallocate it. */
|
||||
if (sdslen(key->value->ptr) > sdsavail(key->value->ptr))
|
||||
if (sdslen(key->value->ptr) < sdsavail(key->value->ptr))
|
||||
key->value->ptr = sdsRemoveFreeSpace(key->value->ptr);
|
||||
}
|
||||
return REDISMODULE_OK;
|
||||
|
Loading…
x
Reference in New Issue
Block a user