mapi32: Add DebugInfo to critical sections.

This commit is contained in:
Jan Zerebecki 2007-03-10 22:08:59 +01:00 committed by Alexandre Julliard
parent e8956eb48b
commit b06c08530f
1 changed files with 2 additions and 0 deletions

View File

@ -1553,6 +1553,7 @@ static inline ULONG WINAPI IMAPIProp_fnRelease(LPMAPIPROP iface)
This->lpFree(current->value);
This->lpFree(current);
}
This->cs.DebugInfo->Spare[0] = 0;
DeleteCriticalSection(&This->cs);
This->lpFree(This);
}
@ -2543,6 +2544,7 @@ SCODE WINAPI CreateIProp(LPCIID iid, ALLOCATEBUFFER *lpAlloc,
lpPropData->ulNumValues = 0;
list_init(&lpPropData->values);
InitializeCriticalSection(&lpPropData->cs);
lpPropData->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": IPropDataImpl.cs");
*lppPropData = (LPPROPDATA)lpPropData;
}
return scode;