From 6617f1704ba9ce6d119c033c10cbe1450f0eeedf Mon Sep 17 00:00:00 2001 From: Binbin Date: Thu, 10 Nov 2022 16:27:38 +0800 Subject: [PATCH] Add missing lpFree for listpack test, fix valgrind daily (#11492) Add missing lpFree, introduced in #11290 --- src/listpack.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/listpack.c b/src/listpack.c index bfa364f98..abe2142de 100644 --- a/src/listpack.c +++ b/src/listpack.c @@ -2224,6 +2224,7 @@ int listpackTest(int argc, char *argv[], int flags) { index++; } } + lpFree(lp); } TEST("lpNextRandom corner cases") { @@ -2272,6 +2273,7 @@ int listpackTest(int argc, char *argv[], int flags) { p = lpNextRandom(lp, p, &i, remaining, 0); assert(p == p0 || p == p1 || p == p2 || p == NULL); } + lpFree(lp); } TEST("Random pair with one element") {