https://bugs.winehq.org/show_bug.cgi?id=38521
winetest@luukku.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |winetest@luukku.com
--- Comment #4 from winetest@luukku.com --- (In reply to super_man from comment #3)
still crashes 1.7.54
Still valid wine-staging 1.9.14
Something wrong here?
394 NTSTATUS WINAPI RtlDeleteCriticalSection( RTL_CRITICAL_SECTION *crit ) 395 { 396 crit->LockCount = -1; 397 crit->RecursionCount = 0; 398 crit->OwningThread = 0; 399 if (crit->DebugInfo) 400 { 401 /* only free the ones we made in here */ 402 if (!crit->DebugInfo->Spare[0]) 403 { 404 RtlFreeHeap( GetProcessHeap(), 0, crit->DebugInfo ); 405 crit->DebugInfo = NULL; 406 } 407 close_semaphore( crit ); 408 } 409 else NtClose( crit->LockSemaphore ); 410 crit->LockSemaphore = 0; 411 return STATUS_SUCCESS; 412 }