summaryrefslogtreecommitdiffstats
path: root/test/danetest.c
diff options
context:
space:
mode:
authorViktor Dukhovni <openssl-users@dukhovni.org>2016-02-06 15:17:11 -0500
committerViktor Dukhovni <openssl-users@dukhovni.org>2016-02-06 15:39:48 -0500
commitd1b105827aef49ae16fd2d321bafa92b1a6489c9 (patch)
tree4083c976e97f0d422c0c5ee7ab34c353d686ce7d /test/danetest.c
parent48cc4ad020213c83c34b225820522fe64163b522 (diff)
Allocate bio_err before turning on memleak checks
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'test/danetest.c')
-rw-r--r--test/danetest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/danetest.c b/test/danetest.c
index 92a3b1ba33..cad751f4ba 100644
--- a/test/danetest.c
+++ b/test/danetest.c
@@ -471,6 +471,8 @@ int main(int argc, char *argv[])
CAfile = argv[2];
tlsafile = argv[3];
+ bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
+
p = getenv("OPENSSL_DEBUG_MEMORY");
if (p != NULL && strcmp(p, "on") == 0)
CRYPTO_set_mem_debug(1);
@@ -483,8 +485,6 @@ int main(int argc, char *argv[])
return 0;
}
- bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
-
SSL_library_init();
SSL_load_error_strings();