summaryrefslogtreecommitdiffstats
path: root/test/clienthellotest.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-11-24 09:19:04 +0000
committerMatt Caswell <matt@openssl.org>2016-11-24 18:02:43 +0000
commitf231b4e7a651713c2a792c71b30aa0398d14b9f1 (patch)
treed4f89c35259c51e7ab341aeb1d7cdd5f004402ba /test/clienthellotest.c
parentab29eca645cdb38ffe73d141bbd7c6879b602860 (diff)
Fix a warning about an uninit var
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/clienthellotest.c')
-rw-r--r--test/clienthellotest.c2
1 files changed, 1 insertions, 1 deletions
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;