From: Matt Caswell Date: Thu, 24 Nov 2016 09:19:04 +0000 (+0000) Subject: Fix a warning about an uninit var X-Git-Tag: OpenSSL_1_1_1-pre1~2970 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f231b4e7a651713c2a792c71b30aa0398d14b9f1;p=openssl Fix a warning about an uninit var Reviewed-by: Richard Levitte --- diff --git a/test/clienthellotest.c b/test/clienthellotest.c index 61e81c3833..718b582ed5 100644 --- a/test/clienthellotest.c +++ b/test/clienthellotest.c @@ -32,7 +32,7 @@ int main(int argc, char *argv[]) { SSL_CTX *ctx; - SSL *con; + SSL *con = NULL; BIO *rbio; BIO *wbio; BIO *err;