Set ext_list to NULL after use.

This commit is contained in:
Dr. Stephen Henson 1999-05-23 12:02:18 +00:00
parent 9a193d8825
commit 3550ec4f1f

View File

@ -131,6 +131,7 @@ int X509V3_EXT_add_alias(int nid_to, int nid_from)
void X509V3_EXT_cleanup(void)
{
sk_pop_free(ext_list, ext_list_free);
ext_list = NULL;
}
static void ext_list_free(X509V3_EXT_METHOD *ext)