From fa86532354a49f9fb43c357d7f11911b95fb8102 Mon Sep 17 00:00:00 2001 From: Jan Zerebecki Date: Fri, 23 Feb 2007 09:26:17 +0100 Subject: [PATCH] comctl32: Add DebugInfo to critical section. --- dlls/comctl32/animate.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/comctl32/animate.c b/dlls/comctl32/animate.c index 6949213b313..5089549a5f1 100644 --- a/dlls/comctl32/animate.c +++ b/dlls/comctl32/animate.c @@ -803,6 +803,7 @@ static BOOL ANIMATE_Create(HWND hWnd, LPCREATESTRUCTW lpcs) TRACE("Animate style=0x%08x, parent=%p\n", infoPtr->dwStyle, infoPtr->hwndNotify); InitializeCriticalSection(&infoPtr->cs); + infoPtr->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": ANIMATE_INFO*->cs"); return TRUE; } @@ -816,6 +817,7 @@ static LRESULT ANIMATE_Destroy(ANIMATE_INFO *infoPtr) /* free animate info data */ SetWindowLongPtrW(infoPtr->hwndSelf, 0, 0); + infoPtr->cs.DebugInfo->Spare[0] = 0; DeleteCriticalSection(&infoPtr->cs); Free(infoPtr);