Fix a warning about an uninit var

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Matt Caswell 2016-11-24 09:19:04 +00:00
parent ab29eca645
commit f231b4e7a6

View file

@ -32,7 +32,7 @@
int main(int argc, char *argv[])
{
SSL_CTX *ctx;
SSL *con;
SSL *con = NULL;
BIO *rbio;
BIO *wbio;
BIO *err;