Style; add "!= NULL"

Reviewed-by: Emilia Käsper <emilia@openssl.org>
This commit is contained in:
Rich Salz 2016-02-01 08:44:33 -05:00 committed by Rich Salz
parent 53619f9f40
commit 8cdd6b6b47

View File

@ -121,7 +121,7 @@ struct dane_st {
int pdpth; /* Depth of PKIX trust */
};
#define DANETLS_ENABLED(dane) ((dane) && ((dane)->trecs != NULL))
#define DANETLS_ENABLED(dane) ((dane) != NULL && ((dane)->trecs != NULL))
#define DANETLS_USAGE_BIT(u) (((uint32_t)1) << u)