itss: Add DebugInfo to critical sections.

Jan Zerebecki jan.wine at zerebecki.de
Sat Mar 10 15:08:38 CST 2007


---
If this patch is rejected from inclusion, please tell me why, as
I would have to ask anyway.

 dlls/itss/chm_lib.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/dlls/itss/chm_lib.c b/dlls/itss/chm_lib.c
index 074ca3d..b482bb7 100644
--- a/dlls/itss/chm_lib.c
+++ b/dlls/itss/chm_lib.c
@@ -705,8 +705,11 @@ struct chmFile *chm_openW(const WCHAR *filename)
 
     /* initialize mutexes, if needed */
     InitializeCriticalSection(&newHandle->mutex);
+    newHandle->mutex.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": chmFile*->mutex");
     InitializeCriticalSection(&newHandle->lzx_mutex);
+    newHandle->lzx_mutex.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": chmFile*->lzx_mutex");
     InitializeCriticalSection(&newHandle->cache_mutex);
+    newHandle->cache_mutex.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": chmFile*->cache_mutex");
 
     /* read and verify header */
     sremain = _CHM_ITSF_V3_LEN;
@@ -826,8 +829,11 @@ void chm_close(struct chmFile *h)
             CHM_CLOSE_FILE(h->fd);
         h->fd = CHM_NULL_FD;
 
+        h->mutex.DebugInfo->Spare[0] = 0;
         DeleteCriticalSection(&h->mutex);
+        h->lzx_mutex.DebugInfo->Spare[0] = 0;
         DeleteCriticalSection(&h->lzx_mutex);
+        h->cache_mutex.DebugInfo->Spare[0] = 0;
         DeleteCriticalSection(&h->cache_mutex);
 
         if (h->lzx_state)



More information about the wine-patches mailing list