summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-03-14 01:16:45 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-03-14 01:16:45 +0000
commit199d59e5a1683aec183bf4eacbc096663357c46b (patch)
tree5497c32bc3f690a6a503699c8dd0551035a29b89 /ssl
parentb29524c15b33fc5fbd630751226b896ac91967f8 (diff)
Remove some references which called malloc and free instead of Malloc and Free.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 8c1166914c..1091ee1009 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -1019,7 +1019,7 @@ void SSL_CTX_free(SSL_CTX *a)
if (a->extra_certs != NULL)
sk_pop_free(a->extra_certs,X509_free);
if (a->comp_methods != NULL)
- sk_pop_free(a->comp_methods,free);
+ sk_pop_free(a->comp_methods,FreeFunc);
Free((char *)a);
}