From ff767730e18866811bdc54919da0028b3fc5febe Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Sun, 13 Dec 2015 21:52:33 -0800 Subject: [PATCH] Fix leak --- test/core/bad_ssl/bad_ssl_test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/core/bad_ssl/bad_ssl_test.c b/test/core/bad_ssl/bad_ssl_test.c index f33f7e0ae32..08ab482c58f 100644 --- a/test/core/bad_ssl/bad_ssl_test.c +++ b/test/core/bad_ssl/bad_ssl_test.c @@ -122,6 +122,7 @@ static void run_test(const char *target, size_t nops) { grpc_channel_destroy(channel); grpc_completion_queue_destroy(cq); cq_verifier_destroy(cqv); + grpc_channel_credentials_release(ssl_creds); } int main(int argc, char **argv) {