Fix a warning about an uninit var
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
ab29eca645
commit
f231b4e7a6
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
int main(int argc, char *argv[])
|
||||
{
|
||||
SSL_CTX *ctx;
|
||||
SSL *con;
|
||||
SSL *con = NULL;
|
||||
BIO *rbio;
|
||||
BIO *wbio;
|
||||
BIO *err;
|
||||
|
|
Loading…
Reference in a new issue