Commit 3abbbb25 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mscms: Delete the static critical section when unloading the dll.

parent 903146bd
...@@ -60,6 +60,8 @@ void free_handle_tables( void ) ...@@ -60,6 +60,8 @@ void free_handle_tables( void )
HeapFree( GetProcessHeap(), 0, transformtable ); HeapFree( GetProcessHeap(), 0, transformtable );
transformtable = NULL; transformtable = NULL;
num_transform_handles = 0; num_transform_handles = 0;
DeleteCriticalSection( &MSCMS_handle_cs );
} }
struct profile *grab_profile( HPROFILE handle ) struct profile *grab_profile( HPROFILE handle )
......
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