Skip to content

Commit 2910564

Browse files
committed
Fix compile error
That struct doesn't really need early initializing anyway, it's not freed in the exit block. Signed-off-by: Manuel Pégourié-Gonnard <[email protected]>
1 parent 6744227 commit 2910564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/suites/test_suite_ssl.function

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5061,7 +5061,7 @@ void inject_client_content_on_the_wire(int pk_alg,
50615061
mbedtls_platform_zeroize(&client, sizeof(client));
50625062
mbedtls_test_handshake_test_options options;
50635063
mbedtls_test_init_handshake_options(&options);
5064-
mbedtls_test_ssl_log_pattern srv_pattern = { 0 };
5064+
mbedtls_test_ssl_log_pattern srv_pattern;
50655065
int ret = -1;
50665066

50675067
PSA_INIT();

0 commit comments

Comments
 (0)