mirror of
https://github.com/openssl/openssl.git
synced 2025-01-12 13:36:28 +08:00
sm2: fix error raise to not fail make update
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16411)
This commit is contained in:
parent
94736c3a10
commit
2576b70d43
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user