From 8acc27998bf253f0fd7c59d0e6aa515e5793ad01 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 12 Jun 2017 13:57:13 +0100 Subject: [PATCH] Fix an uninitialised variable warning Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/3623) --- ssl/statem/statem_srvr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ssl/statem/statem_srvr.c b/ssl/statem/statem_srvr.c index 53b8ef9431..0f55d2652d 100644 --- a/ssl/statem/statem_srvr.c +++ b/ssl/statem/statem_srvr.c @@ -2022,9 +2022,9 @@ WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst) /* check whether we should disable session resumption */ if (s->not_resumable_session_cb != NULL) s->session->not_resumable = - s->not_resumable_session_cb(s, ((cipher->algorithm_mkey - & (SSL_kDHE | SSL_kECDHE)) - != 0)); + s->not_resumable_session_cb(s, + ((s->s3->tmp.new_cipher->algorithm_mkey + & (SSL_kDHE | SSL_kECDHE)) != 0)); if (s->session->not_resumable) /* do not send a session ticket */ s->ext.ticket_expected = 0; -- 2.25.1