From 427eb908038a9049391180faa2969a570e3de9bb Mon Sep 17 00:00:00 2001 From: Alistair Veitch <aveitch@google.com> Date: Wed, 21 Oct 2015 09:31:58 -0700 Subject: [PATCH] Fix memory leak --- test/core/support/cpu_test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/core/support/cpu_test.c b/test/core/support/cpu_test.c index c10484eaf7..6559c1b57e 100644 --- a/test/core/support/cpu_test.c +++ b/test/core/support/cpu_test.c @@ -131,6 +131,7 @@ static void cpu_test(void) { } } fprintf(stderr, "] (%d/%d)\n", cores_seen, ct.ncores); + gpr_free(ct.used); } int main(int argc, char *argv[]) { -- GitLab