mirror of
https://github.com/fluencelabs/redis
synced 2025-06-18 03:31:21 +00:00
another missing free->zfree replacement fixed. Thanks to Ludo
This commit is contained in:
2
redis.c
2
redis.c
@ -2619,7 +2619,7 @@ static void sortCommand(redisClient *c) {
|
||||
/* Create a list of operations to perform for every sorted element.
|
||||
* Operations can be GET/DEL/INCR/DECR */
|
||||
operations = listCreate();
|
||||
listSetFreeMethod(operations,free);
|
||||
listSetFreeMethod(operations,zfree);
|
||||
j = 2;
|
||||
|
||||
/* Now we need to protect sortval incrementing its count, in the future
|
||||
|
Reference in New Issue
Block a user