Appease gcc3 -Wuninitialized.
authormiod <miod@openbsd.org>
Sat, 26 Apr 2014 22:54:54 +0000 (22:54 +0000)
committermiod <miod@openbsd.org>
Sat, 26 Apr 2014 22:54:54 +0000 (22:54 +0000)
lib/libssl/src/ssl/t1_lib.c
lib/libssl/t1_lib.c

index 01ecf94..bb33331 100644 (file)
@@ -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 
index 01ecf94..bb33331 100644 (file)
@@ -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