- Fixed possible uninitialized values
This commit is contained in:
parent
0216cc1bee
commit
99a03afc22
3 changed files with 4 additions and 5 deletions
|
@ -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" ) );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue