From: Pauli Date: Wed, 25 Aug 2021 00:12:17 +0000 (+1000) Subject: sm2: fix error raise to not fail make update X-Git-Tag: openssl-3.0.0~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2576b70d43e1fcc8073df60ccccf3e22a13b67d3;p=thirdparty%2Fopenssl.git sm2: fix error raise to not fail make update Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/16411) --- diff --git a/crypto/sm2/sm2_crypt.c b/crypto/sm2/sm2_crypt.c index e26b48390a9..5318c6199f6 100644 --- a/crypto/sm2/sm2_crypt.c +++ b/crypto/sm2/sm2_crypt.c @@ -313,7 +313,7 @@ int ossl_sm2_decrypt(const EC_KEY *key, C3 = sm2_ctext->C3->data; msg_len = sm2_ctext->C2->length; if (*ptext_len < (size_t)msg_len) { - SM2err(SM2_F_SM2_DECRYPT, SM2_R_BUFFER_TOO_SMALL); + ERR_raise(ERR_LIB_SM2, SM2_R_BUFFER_TOO_SMALL); goto done; }