summaryrefslogtreecommitdiffstats
path: root/crypto/asn1
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-11-13 20:25:56 +0000
committerRichard Levitte <levitte@openssl.org>2002-11-13 20:25:56 +0000
commitb193f29a9b88e2c7163ccb8618dde2bf68122789 (patch)
treecc92c0fc4c09fd3be1dab394945409d72bf89f5d /crypto/asn1
parent7ab58bf0129f2e3f3eb40fbd1a9180422f51ad7f (diff)
free() -> OPENSSL_free()
Diffstat (limited to 'crypto/asn1')
-rw-r--r--crypto/asn1/t_x509.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/t_x509.c b/crypto/asn1/t_x509.c
index d34acf4ad1..d1034c47f8 100644
--- a/crypto/asn1/t_x509.c
+++ b/crypto/asn1/t_x509.c
@@ -441,7 +441,7 @@ int X509_NAME_print(BIO *bp, X509_NAME *name, int obase)
b=s=X509_NAME_oneline(name,NULL,0);
if (!*s)
{
- free(b);
+ OPENSSL_free(b);
return 1;
}
s++; /* skip the first slash */
@@ -499,7 +499,7 @@ int X509_NAME_print(BIO *bp, X509_NAME *name, int obase)
err:
X509err(X509_F_X509_NAME_PRINT,ERR_R_BUF_LIB);
}
- free(b);
+ OPENSSL_free(b);
return(ret);
}