- Timestamp:
- Feb 17, 2012, 11:35:56 AM (14 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/rsaenh/handle.c
r21967 r21971 60 60 InitializeCriticalSection(&lpTable->mutex); 61 61 #ifdef DEBUG 62 lpTable->mutex.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": HANDLETBL.mutex");62 //lpTable->mutex.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": HANDLETBL.mutex"); 63 63 #endif 64 64 } … … 81 81 HeapFree(GetProcessHeap(), 0, lpTable->paEntries); 82 82 #ifdef DEBUG 83 lpTable->mutex.DebugInfo->Spare[0] = 0;83 //lpTable->mutex.DebugInfo->Spare[0] = 0; 84 84 #endif 85 85 DeleteCriticalSection(&lpTable->mutex); -
trunk/src/secur32/secur32.c
r21967 r21971 560 560 InitializeCriticalSection(&cs); 561 561 #ifdef DEBUG 562 cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": cs");562 //cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": cs"); 563 563 #endif 564 564 /* First load built-in providers */ … … 710 710 LeaveCriticalSection(&cs); 711 711 #ifdef DEBUG 712 cs.DebugInfo->Spare[0] = 0;712 //cs.DebugInfo->Spare[0] = 0; 713 713 #endif 714 714 DeleteCriticalSection(&cs);
Note:
See TracChangeset
for help on using the changeset viewer.