projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9615387
)
Fix a travis failure
author
Matt Caswell
<matt@openssl.org>
Thu, 8 Dec 2016 09:48:29 +0000
(09:48 +0000)
committer
Matt Caswell
<matt@openssl.org>
Thu, 8 Dec 2016 17:21:41 +0000
(17:21 +0000)
Travis was indicating a bogus uninit var warning. This fixes it.
Perl changes reviewed by Richard Levitte. Non-perl changes reviewed by Rich
Salz
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
ssl/statem/statem_clnt.c
patch
|
blob
|
history
diff --git
a/ssl/statem/statem_clnt.c
b/ssl/statem/statem_clnt.c
index 18430ea315015151f07addc596a32e82cb22419e..35ca8defa90d6b11309e861f61edd7d4850c4cfb 100644
(file)
--- a/
ssl/statem/statem_clnt.c
+++ b/
ssl/statem/statem_clnt.c
@@
-1110,6
+1110,7
@@
MSG_PROCESS_RETURN tls_process_server_hello(SSL *s, PACKET *pkt)
goto f_err;
}
} else {
+ PACKET_null_init(&session_id);
session_id_len = 0;
}