mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
- Fixed possible uninitialized values
This commit is contained in:
@ -625,7 +625,7 @@ static int ssl_write_client_key_exchange( ssl_context *ssl )
|
||||
|
||||
static int ssl_write_certificate_verify( ssl_context *ssl )
|
||||
{
|
||||
int ret, n;
|
||||
int ret = 0, n = 0;
|
||||
unsigned char hash[36];
|
||||
|
||||
SSL_DEBUG_MSG( 2, ( "=> write certificate verify" ) );
|
||||
|
Reference in New Issue
Block a user