mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 00:01:04 +00:00
ZSETs memory leak #1 solved, another one missing
This commit is contained in:
parent
bb975144e4
commit
599379ddda
2
redis.c
2
redis.c
@ -3738,7 +3738,7 @@ static void zslFree(zskiplist *zsl) {
|
||||
zskiplistNode *node = zsl->header->forward[1], *next;
|
||||
|
||||
while(node) {
|
||||
next = node->forward[1];
|
||||
next = node->forward[0];
|
||||
zslFreeNode(node);
|
||||
node = next;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user