mirror of
https://github.com/openssl/openssl.git
synced 2025-01-27 12:23:33 +08:00
Fix bogus warnings
Fix some bogus "may be used uninitialized" warnings on some compilers. Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
44c248b5ac
commit
0fae81501a
@ -352,7 +352,7 @@ static int test_ssl_set_bio(int idx)
|
||||
SSL_CTX *ctx = SSL_CTX_new(TLS_method());
|
||||
BIO *bio1 = NULL;
|
||||
BIO *bio2 = NULL;
|
||||
BIO *irbio, *iwbio, *nrbio, *nwbio;
|
||||
BIO *irbio = NULL, *iwbio = NULL, *nrbio = NULL, *nwbio = NULL;
|
||||
SSL *ssl = NULL;
|
||||
int initrbio, initwbio, newrbio, newwbio;
|
||||
int testresult = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user