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

oldstable
Francois Gouget 2011-11-17 09:52:38 +01:00 committed by Alexandre Julliard
parent 113df19d6a
commit 7238a78805
1 changed files with 2 additions and 0 deletions

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)