ssl_helper: fix missin initialization of cli_log_obj

Signed-off-by: Pengyu Lv <pengyu.lv@arm.com>
This commit is contained in:
Pengyu Lv 2023-11-08 10:30:48 +08:00
parent 1f00926142
commit fe03a4071b

View File

@ -73,7 +73,7 @@ void mbedtls_test_init_handshake_options(
opts->renegotiate = 0;
opts->legacy_renegotiation = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION;
opts->srv_log_obj = NULL;
opts->srv_log_obj = NULL;
opts->cli_log_obj = NULL;
opts->srv_log_fun = NULL;
opts->cli_log_fun = NULL;
opts->resize_buffers = 1;