Commit 10faa999 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

crypt32: Delete the oid and sip static critical sections when unloading the dll.

parent 3abbbb25
......@@ -92,6 +92,7 @@ static void free_function_sets(void)
DeleteCriticalSection(&setCursor->cs);
CryptMemFree(setCursor);
}
DeleteCriticalSection(&funcSetCS);
}
/* There is no free function associated with this; therefore, the sets are
......@@ -1461,6 +1462,7 @@ static void free_oid_info(void)
list_remove(&info->entry);
CryptMemFree(info);
}
DeleteCriticalSection(&oidInfoCS);
}
/***********************************************************************
......
......@@ -616,6 +616,7 @@ void crypt_sip_free(void)
FreeLibrary(prov->info.hSIP);
CryptMemFree(prov);
}
DeleteCriticalSection(&providers_cs);
}
/* Loads the SIP for pgSubject into the global cache. Returns FALSE if the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment