mirror of
https://github.com/fluencelabs/redis
synced 2025-04-05 01:01:04 +00:00
Fixed memory leak in clusterManagerCompareKeysValues.
This commit is contained in:
parent
0d166674f9
commit
cc29590188
@ -2993,6 +2993,8 @@ static int clusterManagerCompareKeysValues(clusterManagerNode *n1,
|
|||||||
cleanup:
|
cleanup:
|
||||||
if (r1) freeReplyObject(r1);
|
if (r1) freeReplyObject(r1);
|
||||||
if (r2) freeReplyObject(r2);
|
if (r2) freeReplyObject(r2);
|
||||||
|
zfree(argv);
|
||||||
|
zfree(argv_len);
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user