Commit 5152e737 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

wmiutil: Force debug info in critical sections.

parent 3fd83279
......@@ -1282,7 +1282,7 @@ HRESULT WbemPath_create( LPVOID *ppObj )
path->IWbemPath_iface.lpVtbl = &path_vtbl;
path->refs = 1;
InitializeCriticalSection( &path->cs );
InitializeCriticalSectionEx( &path->cs, 0, RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO );
path->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": wmiutils_path.cs");
init_path( path );
......
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