Missing X509_STORE_CTX_free(ctx);

This commit is contained in:
Takashi Kojo
2017-06-21 08:04:12 +09:00
parent a8bc2df19c
commit dace30cfac

View File

@ -10504,6 +10504,7 @@ static void test_wolfSSL_X509_STORE_CTX(void)
printf(testingFmt, "test_wolfSSL_X509_STORE_CTX(()");
AssertNotNull(ctx = X509_STORE_CTX_new());
X509_STORE_CTX_set_verify_cb(ctx, (void *)verify_cb);
X509_STORE_CTX_free(ctx);
printf(resultFmt, passed);
#endif
}