mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Avoid converting void * to a function pointer when NULL is defined as
((void *)0), by have a 0 instead.
This commit is contained in:
parent
c89cb36dbf
commit
ea5e7bcf63
@ -79,7 +79,7 @@ NID_crl_reason, 0,
|
||||
(X509V3_EXT_D2I)d2i_ASN1_ENUMERATED,
|
||||
(X509V3_EXT_I2D)i2d_ASN1_ENUMERATED,
|
||||
(X509V3_EXT_I2S)i2s_ASN1_ENUMERATED_TABLE,
|
||||
(X509V3_EXT_S2I)NULL,
|
||||
(X509V3_EXT_S2I)0,
|
||||
NULL, NULL, NULL, NULL, crl_reasons};
|
||||
|
||||
|
||||
|
@ -67,6 +67,6 @@ NID_crl_number, 0,
|
||||
(X509V3_EXT_D2I)d2i_ASN1_INTEGER,
|
||||
(X509V3_EXT_I2D)i2d_ASN1_INTEGER,
|
||||
(X509V3_EXT_I2S)i2s_ASN1_INTEGER,
|
||||
(X509V3_EXT_S2I)NULL,
|
||||
(X509V3_EXT_S2I)0,
|
||||
NULL, NULL, NULL, NULL, NULL};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user