summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-06-23 18:18:21 +0100
committerMatt Caswell <matt@openssl.org>2017-06-23 20:30:27 +0100
commit1e55873f258400beb785fe2c09a5d1532e76f6fa (patch)
tree357fd61077a4cce42c9f04c80d10f600a8b7b29f /test
parent404c76f4ee1dc51c0d200e2b60a6340aadb44e38 (diff)
Fix a memory leak in the new TAP filter BIO
[extended tests] Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3760)
Diffstat (limited to 'test')
-rw-r--r--test/testutil/basic_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutil/basic_output.c b/test/testutil/basic_output.c
index b69c59f775..6a06b36728 100644
--- a/test/testutil/basic_output.c
+++ b/test/testutil/basic_output.c
@@ -30,7 +30,7 @@ void test_open_streams(void)
void test_close_streams(void)
{
BIO_free(bio_out);
- BIO_free(bio_err);
+ BIO_free_all(bio_err);
}
int test_vprintf_stdout(const char *fmt, va_list ap)