mirror of
https://github.com/openssl/openssl.git
synced 2025-03-19 19:50:42 +08:00
OSSL_DECODER 'decode' function must never be NULL.
The conditions for a valid implementation allowed the 'decode' function to be NULL or the 'export_object' was NULL. That condition is changed so that 'decode' is checked to be non-NULL by itself. Fixes #12819 Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12849)
This commit is contained in:
parent
c88f6f0e40
commit
c1aba0763c
@ -215,7 +215,7 @@ void *ossl_decoder_from_dispatch(int id, const OSSL_ALGORITHM *algodef,
|
||||
*/
|
||||
if (!((decoder->newctx == NULL && decoder->freectx == NULL)
|
||||
|| (decoder->newctx != NULL && decoder->freectx != NULL))
|
||||
|| (decoder->decode == NULL && decoder->export_object == NULL)) {
|
||||
|| decoder->decode == NULL) {
|
||||
OSSL_DECODER_free(decoder);
|
||||
ERR_raise(ERR_LIB_OSSL_DECODER, ERR_R_INVALID_PROVIDER_FUNCTIONS);
|
||||
return NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user