diff options
Diffstat (limited to 'src/lib/libcrypto/x509v3/v3_pku.c')
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_pku.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_pku.c b/src/lib/libcrypto/x509v3/v3_pku.c index c13e7d8f45..30a62c6090 100644 --- a/src/lib/libcrypto/x509v3/v3_pku.c +++ b/src/lib/libcrypto/x509v3/v3_pku.c | |||
@@ -119,9 +119,9 @@ PKEY_USAGE_PERIOD *d2i_PKEY_USAGE_PERIOD(PKEY_USAGE_PERIOD **a, | |||
119 | void PKEY_USAGE_PERIOD_free(PKEY_USAGE_PERIOD *a) | 119 | void PKEY_USAGE_PERIOD_free(PKEY_USAGE_PERIOD *a) |
120 | { | 120 | { |
121 | if (a == NULL) return; | 121 | if (a == NULL) return; |
122 | ASN1_GENERALIZEDTIME_free(a->notBefore); | 122 | M_ASN1_GENERALIZEDTIME_free(a->notBefore); |
123 | ASN1_GENERALIZEDTIME_free(a->notAfter); | 123 | M_ASN1_GENERALIZEDTIME_free(a->notAfter); |
124 | Free ((char *)a); | 124 | Free (a); |
125 | } | 125 | } |
126 | 126 | ||
127 | static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, | 127 | static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, |