mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
encoder: fix coverity 1473235: null dereference
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14618)
This commit is contained in:
parent
26d5244253
commit
3c4c8dd84a
@ -261,7 +261,7 @@ static int ossl_encoder_ctx_setup_for_pkey(OSSL_ENCODER_CTX *ctx,
|
||||
}
|
||||
}
|
||||
|
||||
if (OSSL_ENCODER_CTX_get_num_encoders(ctx) != 0) {
|
||||
if (data != NULL && OSSL_ENCODER_CTX_get_num_encoders(ctx) != 0) {
|
||||
if (!OSSL_ENCODER_CTX_set_construct(ctx, encoder_construct_pkey)
|
||||
|| !OSSL_ENCODER_CTX_set_construct_data(ctx, data)
|
||||
|| !OSSL_ENCODER_CTX_set_cleanup(ctx, encoder_destruct_pkey))
|
||||
|
Loading…
x
Reference in New Issue
Block a user