diff options
author | Matt Caswell <matt@openssl.org> | 2016-11-24 10:19:04 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-11-24 19:02:43 +0100 |
commit | f231b4e7a651713c2a792c71b30aa0398d14b9f1 (patch) | |
tree | d4f89c35259c51e7ab341aeb1d7cdd5f004402ba /test/clienthellotest.c | |
parent | Run BoringSSL tests on Travis (diff) | |
download | openssl-f231b4e7a651713c2a792c71b30aa0398d14b9f1.tar.xz openssl-f231b4e7a651713c2a792c71b30aa0398d14b9f1.zip |
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.c | 2 |
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; |