From f231b4e7a651713c2a792c71b30aa0398d14b9f1 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 24 Nov 2016 09:19:04 +0000 Subject: [PATCH] Fix a warning about an uninit var Reviewed-by: Richard Levitte --- test/clienthellotest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1