Commit 0fae8150 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix bogus warnings



Fix some bogus "may be used uninitialized" warnings on some compilers.

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 44c248b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;