msi: Delete the handle static critical sections when unloading the dll.

This commit is contained in:
Francois Gouget 2011-11-17 09:52:38 +01:00 committed by Alexandre Julliard
parent 113df19d6a
commit 7238a78805

View file

@ -71,6 +71,8 @@ void msi_free_handle_table(void)
msi_free( msihandletable );
msihandletable = NULL;
msihandletable_size = 0;
DeleteCriticalSection(&MSI_handle_cs);
DeleteCriticalSection(&MSI_object_cs);
}
static MSIHANDLE alloc_handle_table_entry(void)