From 72a5412b4858cc7c5627a121f78685a2a4065521 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 14 Nov 2019 12:09:42 +0100 Subject: UI_UTIL_wrap_read_pem_callback(): when |cb| is NULL, use PEM_def_callback Fixes #10444 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10447) --- crypto/ui/ui_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/ui/ui_util.c b/crypto/ui/ui_util.c index b28c13324a..f64780a6a2 100644 --- a/crypto/ui/ui_util.c +++ b/crypto/ui/ui_util.c @@ -8,6 +8,7 @@ */ #include +#include /* PEM_def_callback() */ #include "internal/thread_once.h" #include "ui_local.h" @@ -156,7 +157,7 @@ UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag) return NULL; } data->rwflag = rwflag; - data->cb = cb; + data->cb = cb != NULL ? cb : PEM_def_callback; return ui_method; } -- cgit v1.2.3