Commit 826321bc authored by Jan Zerebecki's avatar Jan Zerebecki Committed by Alexandre Julliard

winenas.drv: Add DebugInfo to critical sections.

parent 70f6afdc
......@@ -461,6 +461,7 @@ static int NAS_InitRingMessage(MSG_RING* mr)
mr->ring_buffer_size = NAS_RING_BUFFER_INCREMENT;
mr->messages = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,mr->ring_buffer_size * sizeof(RING_MSG));
InitializeCriticalSection(&mr->msg_crst);
mr->msg_crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": MSG_RING.msg_crst");
return 0;
}
......@@ -472,6 +473,7 @@ static int NAS_DestroyRingMessage(MSG_RING* mr)
{
CloseHandle(mr->msg_event);
HeapFree(GetProcessHeap(),0,mr->messages);
mr->msg_crst.DebugInfo->Spare[0] = 0;
DeleteCriticalSection(&mr->msg_crst);
return 0;
}
......
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