mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
windows.security.credentials.ui.userconsentverifier: Force debug info in critical sections.
This commit is contained in:
parent
ee5828da6a
commit
c064fdeb8d
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ static HRESULT async_info_create( IUnknown *invoker, IUnknown *param, async_oper
|
|||
if ((impl->invoker = invoker)) IUnknown_AddRef( impl->invoker );
|
||||
if ((impl->param = param)) IUnknown_AddRef( impl->param );
|
||||
|
||||
InitializeCriticalSection( &impl->cs );
|
||||
InitializeCriticalSectionEx( &impl->cs, 0, RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO );
|
||||
impl->cs.DebugInfo->Spare[0] = (DWORD_PTR)( __FILE__ ": async_info.cs" );
|
||||
|
||||
*out = &impl->IWineAsyncInfoImpl_iface;
|
||||
|
|
Loading…
Reference in a new issue