diff options
Diffstat (limited to 'pow/POW-0.7/POW.c')
-rw-r--r-- | pow/POW-0.7/POW.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pow/POW-0.7/POW.c b/pow/POW-0.7/POW.c index a8b4189b..80ce4601 100644 --- a/pow/POW-0.7/POW.c +++ b/pow/POW-0.7/POW.c @@ -4808,7 +4808,7 @@ static int ssl_object_verify_callback(X509_STORE_CTX *ctx, void *arg) if (ctx->current_issuer) X509_print(b, ctx->current_issuer); - if ((len == BIO_ctrl_pending(b)) == 0 || + if ((len = BIO_ctrl_pending(b)) == 0 || (buf = malloc(len)) == NULL) goto fail; |