X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fasn1%2Fx_sig.c;h=d79f147647cc6bdaedaa9857cc7dfceb2f1c71d3;hb=9ef9e78520eba0fb3d92b581dc4f895a5f464387;hp=c2782d1b9c087bc8fdfa049384ba687fe7260907;hpb=f0e8ae723cf8f86a91bdc5be8a6a5b956309729f;p=oweals%2Fopenssl.git diff --git a/crypto/asn1/x_sig.c b/crypto/asn1/x_sig.c index c2782d1b9c..d79f147647 100644 --- a/crypto/asn1/x_sig.c +++ b/crypto/asn1/x_sig.c @@ -94,7 +94,7 @@ X509_SIG *X509_SIG_new(void) M_ASN1_New_Malloc(ret,X509_SIG); M_ASN1_New(ret->algor,X509_ALGOR_new); - M_ASN1_New(ret->digest,ASN1_OCTET_STRING_new); + M_ASN1_New(ret->digest,M_ASN1_OCTET_STRING_new); return(ret); M_ASN1_New_Error(ASN1_F_X509_SIG_NEW); } @@ -103,8 +103,8 @@ void X509_SIG_free(X509_SIG *a) { if (a == NULL) return; X509_ALGOR_free(a->algor); - ASN1_OCTET_STRING_free(a->digest); - Free((char *)a); + M_ASN1_OCTET_STRING_free(a->digest); + OPENSSL_free(a); }