Ensure the age_add variable is properly initialised
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2259)
This commit is contained in:
parent
79495812fb
commit
9ac6244b57
1 changed files with 1 additions and 1 deletions
|
@ -2212,7 +2212,7 @@ MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s, PACKET *pkt)
|
|||
{
|
||||
int al;
|
||||
unsigned int ticklen;
|
||||
unsigned long ticket_lifetime_hint, age_add;
|
||||
unsigned long ticket_lifetime_hint, age_add = 0;
|
||||
unsigned int sess_len;
|
||||
RAW_EXTENSION *exts = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue