mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-28 21:17:54 +00:00
Don't check for OPENSSL_cleanup failures by default
OPENSSL_cleanup is supposed to free all remaining memory in use provided the application has cleaned up properly. This is not the case on some operating systems. Silently ignore memory that is freed after OPENSSL_cleanup has been called.
This commit is contained in:
parent
97627c554b
commit
a3172c8f9c
@ -77,7 +77,11 @@ isc__tls_set_thread_id(CRYPTO_THREADID *id) {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ISC_TEST_OPENSSL_MEMORY_LEAKS
|
||||||
static atomic_bool handle_fatal = false;
|
static atomic_bool handle_fatal = false;
|
||||||
|
#else
|
||||||
|
static atomic_bool handle_fatal = true;
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(LIBRESSL_VERSION_NUMBER)
|
#if !defined(LIBRESSL_VERSION_NUMBER)
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user