mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-03 13:09:38 +00:00
PEM: Always use PEM_def_callback() when cb == NULL in pem_read_bio_key()
Too many other functions depend on this being done. Fixes #13340 Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/13346)
This commit is contained in:
parent
457856f27a
commit
00eae3f9cf
@ -48,11 +48,8 @@ static EVP_PKEY *pem_read_bio_key(BIO *bp, EVP_PKEY **x,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (u != NULL && cb == NULL)
|
||||
cb = PEM_def_callback;
|
||||
if (cb == NULL)
|
||||
ui_method = UI_null();
|
||||
else
|
||||
cb = PEM_def_callback;
|
||||
ui_method = allocated_ui_method = UI_UTIL_wrap_read_pem_callback(cb, 0);
|
||||
if (ui_method == NULL)
|
||||
return NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user