mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-08-08 20:27:49 +00:00
Pacify ancient clang -Wmissing-initializer
Signed-off-by: Gilles Peskine <[email protected]>
This commit is contained in:
committed by
Manuel Pégourié-Gonnard
parent
7c1dbeff49
commit
7ab9fb6d14
@@ -3061,8 +3061,10 @@ void recombine_server_first_flight(int version,
|
||||
int goal_state, int expected_ret)
|
||||
{
|
||||
enum { BUFFSIZE = 17000 };
|
||||
mbedtls_test_ssl_endpoint client = { 0 };
|
||||
mbedtls_test_ssl_endpoint server = { 0 };
|
||||
mbedtls_test_ssl_endpoint client;
|
||||
memset(&client, 0, sizeof(client));
|
||||
mbedtls_test_ssl_endpoint server;
|
||||
memset(&server, 0, sizeof(server));
|
||||
mbedtls_test_handshake_test_options client_options;
|
||||
mbedtls_test_init_handshake_options(&client_options);
|
||||
mbedtls_test_handshake_test_options server_options;
|
||||
|
||||
Reference in New Issue
Block a user