summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-11-13 20:25:47 +0000
committerRichard Levitte <levitte@openssl.org>2002-11-13 20:25:47 +0000
commit3f083ef0ebf33487d0493bb65523562144b49e38 (patch)
tree523c0cdc38f2ccbf2cdd6b9a93a10e810e5db8c5 /crypto
parent17ed6c06a780487b3a513abb8da20e428d660137 (diff)
free() -> OPENSSL_free()
Diffstat (limited to 'crypto')
-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 7bf2866150..36cef4605d 100644
--- a/crypto/asn1/t_x509.c
+++ b/crypto/asn1/t_x509.c
@@ -452,7 +452,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 */
@@ -510,7 +510,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);
}