From 0eff8581c078c6b6412b122f81e255de591926ce Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Thu, 29 Aug 2019 12:56:21 +0300 Subject: [PATCH] lib-dcrypt: Return value from RSA_set0_crt_params --- src/lib-dcrypt/dcrypt-openssl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib-dcrypt/dcrypt-openssl.c b/src/lib-dcrypt/dcrypt-openssl.c index 17bebde389..948b3daab0 100644 --- a/src/lib-dcrypt/dcrypt-openssl.c +++ b/src/lib-dcrypt/dcrypt-openssl.c @@ -1644,6 +1644,7 @@ static int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) r->dmp1 = dmp1; r->dmq1 = dmq1; r->iqmp = iqmp; + return 1; } #endif -- 2.47.3