diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-12-13 21:52:33 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-12-13 21:52:33 -0800 |
commit | ff767730e18866811bdc54919da0028b3fc5febe (patch) | |
tree | e6a98ff2a6ab78fd5b6f2fac8649daa9282cea43 /test/core | |
parent | 7bbedf20ea80a2f45ba98f4de039f24b79d584c0 (diff) |
Fix leak
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/bad_ssl/bad_ssl_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/core/bad_ssl/bad_ssl_test.c b/test/core/bad_ssl/bad_ssl_test.c index f33f7e0ae3..08ab482c58 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) { |