Adding the forgotten wolfSSL_CTX_free() at the end of the new test_quic_key_share case.

This commit is contained in:
Stefan Eissing
2022-08-18 10:24:18 +02:00
parent 3918a2e29a
commit 6316e26bdc

View File

@ -1178,6 +1178,8 @@ static int test_quic_key_share(int verbose) {
QuicTestContext_free(&tclient);
QuicTestContext_free(&tserver);
wolfSSL_CTX_free(ctx_c);
wolfSSL_CTX_free(ctx_s);
printf(" test_quic_key_share: %s\n", (ret == 0)? passed : failed);
return ret;
}