Address Coverity issues.
This patch addresses the use of uninitialised data raised in Coverity issues 1414881 and 1414882. Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3929)
This commit is contained in:
parent
d212b98b36
commit
20e237c025
1 changed files with 2 additions and 3 deletions
|
@ -1319,6 +1319,8 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
|||
memset(&client_ctx_data, 0, sizeof(client_ctx_data));
|
||||
memset(&server, 0, sizeof(server));
|
||||
memset(&client, 0, sizeof(client));
|
||||
memset(&server_ex_data, 0, sizeof(server_ex_data));
|
||||
memset(&client_ex_data, 0, sizeof(client_ex_data));
|
||||
|
||||
if (!configure_handshake_ctx(server_ctx, server2_ctx, client_ctx,
|
||||
test_ctx, extra, &server_ctx_data,
|
||||
|
@ -1348,9 +1350,6 @@ static HANDSHAKE_RESULT *do_handshake_internal(
|
|||
goto err;
|
||||
}
|
||||
|
||||
memset(&server_ex_data, 0, sizeof(server_ex_data));
|
||||
memset(&client_ex_data, 0, sizeof(client_ex_data));
|
||||
|
||||
ret->result = SSL_TEST_INTERNAL_ERROR;
|
||||
|
||||
if (test_ctx->use_sctp) {
|
||||
|
|
Loading…
Reference in a new issue