diff options
author | Dr. David von Oheimb <dev@ddvo.net> | 2023-10-13 22:27:31 +0200 |
---|---|---|
committer | Dr. David von Oheimb <dev@ddvo.net> | 2023-10-17 22:02:29 +0200 |
commit | 410c80dc7bf2085167553ab9fa517189eed2b3a6 (patch) | |
tree | cf0774f9f2664229bdf54e501e4b9f1afaf8f57e /crypto/evp | |
parent | CMS_add1_signer(): add missing ERR_raise() calls (diff) | |
download | openssl-410c80dc7bf2085167553ab9fa517189eed2b3a6.tar.xz openssl-410c80dc7bf2085167553ab9fa517189eed2b3a6.zip |
EVP shake_ctrl(): add missing NULL evp_ctx check
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22390)
Diffstat (limited to 'crypto/evp')
-rw-r--r-- | crypto/evp/legacy_sha.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/evp/legacy_sha.c b/crypto/evp/legacy_sha.c index 3859286eeb..0c2afc2900 100644 --- a/crypto/evp/legacy_sha.c +++ b/crypto/evp/legacy_sha.c @@ -71,7 +71,11 @@ static int sha1_int_ctrl(EVP_MD_CTX *ctx, int cmd, int p1, void *p2) static int shake_ctrl(EVP_MD_CTX *evp_ctx, int cmd, int p1, void *p2) { - KECCAK1600_CTX *ctx = evp_ctx->md_data; + KECCAK1600_CTX *ctx; + + if (evp_ctx == NULL) + return 0; + ctx = evp_ctx->md_data; switch (cmd) { case EVP_MD_CTRL_XOF_LEN: |