aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/p7_i_s.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/asn1/p7_i_s.c')
-rw-r--r--crypto/asn1/p7_i_s.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/p7_i_s.c b/crypto/asn1/p7_i_s.c
index d21f7ddb84..4a7260a5c8 100644
--- a/crypto/asn1/p7_i_s.c
+++ b/crypto/asn1/p7_i_s.c
@@ -106,6 +106,6 @@ void PKCS7_ISSUER_AND_SERIAL_free(PKCS7_ISSUER_AND_SERIAL *a)
if (a == NULL) return;
X509_NAME_free(a->issuer);
M_ASN1_INTEGER_free(a->serial);
- Free(a);
+ OPENSSL_free(a);
}