From 5e30f2fd58bac0db5c23e33e865fa70bd6eb4349 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 18 Mar 2020 17:17:37 +0000 Subject: Use a non-default libctx in sslapitest We also don't load the default provider into the default libctx to make sure there is no accidental "leakage". Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/11508) --- test/recordlentest.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/recordlentest.c') diff --git a/test/recordlentest.c b/test/recordlentest.c index 01cc53469b..a9932bfddc 100644 --- a/test/recordlentest.c +++ b/test/recordlentest.c @@ -102,7 +102,8 @@ static int test_record_overflow(int idx) ERR_clear_error(); - if (!TEST_true(create_ssl_ctx_pair(TLS_server_method(), TLS_client_method(), + if (!TEST_true(create_ssl_ctx_pair(NULL, TLS_server_method(), + TLS_client_method(), TLS1_VERSION, 0, &sctx, &cctx, cert, privkey))) goto end; -- cgit v1.2.1