projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ab58bf
)
free() -> OPENSSL_free()
author
Richard Levitte
<levitte@openssl.org>
Wed, 13 Nov 2002 20:25:56 +0000
(20:25 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 13 Nov 2002 20:25:56 +0000
(20:25 +0000)
crypto/asn1/t_x509.c
patch
|
blob
|
history
diff --git
a/crypto/asn1/t_x509.c
b/crypto/asn1/t_x509.c
index d34acf4ad1d25b869960257b09a5ca632bf48c40..d1034c47f83f742618cfeb60b52bee7ddd610309 100644
(file)
--- 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);
}