summaryrefslogtreecommitdiff
path: root/test/srptest.c
diff options
context:
space:
mode:
authorRussell Webb <russell.webb@intel.com>2015-06-13 10:35:55 -0400
committerRich Salz <rsalz@openssl.org>2015-06-23 07:59:15 -0400
commit2d540402aac7a05af9c99b58864d53c0201a0b42 (patch)
tree0099f9017d00969fa9a09a4c8a0d7aa990e42ec9 /test/srptest.c
parenta1c506ae9ecb493bb1ae3226100b489e56c4d307 (diff)
downloadopenssl-new-2d540402aac7a05af9c99b58864d53c0201a0b42.tar.gz
RT3856: Fix memory leaks in test code
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'test/srptest.c')
-rw-r--r--test/srptest.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/srptest.c b/test/srptest.c
index 1d463cd782..8075218072 100644
--- a/test/srptest.c
+++ b/test/srptest.c
@@ -148,6 +148,7 @@ int main(int argc, char **argv)
ERR_remove_thread_state(NULL);
ERR_free_strings();
CRYPTO_mem_leaks(bio_err);
+ BIO_free(bio_err);
return 0;
}