We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7bfa71 commit 98eb6b3Copy full SHA for 98eb6b3
1 file changed
src/x509_str.c
@@ -315,7 +315,6 @@ static int wolfSSL_X509_verify_cert_ex(WOLFSSL_X509_STORE_CTX* ctx)
315
*/
316
int wolfSSL_X509_verify_cert(WOLFSSL_X509_STORE_CTX* ctx)
317
{
318
- WOLFSSL_ENTER("wolfSSL_X509_verify_cert");
319
int ret = WC_NO_ERR_TRACE(WOLFSSL_FAILURE);
320
int done = 0;
321
int added = 0;
@@ -325,6 +324,7 @@ int wolfSSL_X509_verify_cert(WOLFSSL_X509_STORE_CTX* ctx)
325
324
WOLFSSL_X509 *issuer = NULL;
326
WOLFSSL_X509 *orig = NULL;
327
WOLF_STACK_OF(WOLFSSL_X509)* certs = NULL;
+ WOLFSSL_ENTER("wolfSSL_X509_verify_cert");
328
329
if (ctx == NULL || ctx->store == NULL || ctx->store->cm == NULL
330
|| ctx->current_cert == NULL || ctx->current_cert->derCert == NULL) {
0 commit comments