- Fixed possible uninitialized values

This commit is contained in:
Paul Bakker 2011-04-01 11:39:39 +00:00
parent 0216cc1bee
commit 99a03afc22
3 changed files with 4 additions and 5 deletions

View file

@ -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" ) );