mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
trace: Do not produce dead code calling BIO_printf if disabled
Fixes #15880 Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15882)
This commit is contained in:
parent
59a783d05a
commit
454d69271c
@ -270,11 +270,19 @@ void OSSL_trace_end(int category, BIO *channel);
|
||||
* 42, "What do you get when you multiply six by nine?");
|
||||
*/
|
||||
|
||||
# define OSSL_TRACEV(category, args) \
|
||||
# if !defined OPENSSL_NO_TRACE && !defined FIPS_MODULE
|
||||
|
||||
# define OSSL_TRACEV(category, args) \
|
||||
OSSL_TRACE_BEGIN(category) \
|
||||
BIO_printf args; \
|
||||
OSSL_TRACE_END(category)
|
||||
|
||||
# else
|
||||
|
||||
# define OSSL_TRACEV(category, args) ((void)0)
|
||||
|
||||
# endif
|
||||
|
||||
# define OSSL_TRACE(category, text) \
|
||||
OSSL_TRACEV(category, (trc_out, "%s", text))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user