Remove some references which called malloc and free instead of Malloc and Free.

This commit is contained in:
Dr. Stephen Henson
1999-03-14 01:16:45 +00:00
parent b29524c15b
commit 199d59e5a1
5 changed files with 14 additions and 7 deletions

View File

@@ -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);
}