diff options
author | 2014-04-26 22:54:54 +0000 | |
---|---|---|
committer | 2014-04-26 22:54:54 +0000 | |
commit | c7e6308377cb4d19886196ccabdcb93a5d3c6f39 (patch) | |
tree | adbcb9afbaa21a2cc23c0f4d859eb7505e1e5358 /lib/libssl/src/ssl/t1_lib.c | |
parent | Get rid of duplication of the global lock code. Allow recursion in all (diff) | |
download | wireguard-openbsd-c7e6308377cb4d19886196ccabdcb93a5d3c6f39.tar.xz wireguard-openbsd-c7e6308377cb4d19886196ccabdcb93a5d3c6f39.zip |
Appease gcc3 -Wuninitialized.
Diffstat (limited to 'lib/libssl/src/ssl/t1_lib.c')
-rw-r--r-- | lib/libssl/src/ssl/t1_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/ssl/t1_lib.c b/lib/libssl/src/ssl/t1_lib.c index 01ecf9479d0..bb333318620 100644 --- a/lib/libssl/src/ssl/t1_lib.c +++ b/lib/libssl/src/ssl/t1_lib.c @@ -1799,7 +1799,7 @@ int ssl_check_clienthello_tlsext_late(SSL *s) { int ret = SSL_TLSEXT_ERR_OK; - int al; + int al = 0; /* XXX gcc3 */ /* If status request then ask callback what to do. * Note: this must be called after servername callbacks in case |