Changeset 17713
- Timestamp:
- Oct 23, 2001, 1:28:11 AM (24 years ago)
- Location:
- tags/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/kernel32/os2heap.cpp ¶
r17589 r17713 1 /* $Id: os2heap.cpp,v 1.2 8 2001-10-12 07:05:48phaller Exp $ */1 /* $Id: os2heap.cpp,v 1.29 2001-10-22 23:28:11 phaller Exp $ */ 2 2 3 3 /* … … 50 50 //****************************************************************************** 51 51 52 static int fhhm_hit = 0;53 static int fhhm_miss = 0;52 //static int fhhm_hit = 0; 53 //static int fhhm_miss = 0; 54 54 static HANDLE fhhm_lastHandle = 0; 55 55 static OS2Heap* fhhm_lastHeap = NULL; … … 311 311 if (hHeap == fhhm_lastHandle) 312 312 { 313 fhhm_hit++;313 // fhhm_hit++; 314 314 return fhhm_lastHeap; 315 315 } 316 316 317 fhhm_miss++;317 // fhhm_miss++; 318 318 319 319 OS2Heap *curheap = OS2Heap::heap; -
TabularUnified tags/trunk/src/shell32/pidl.c ¶
r17658 r17713 486 486 while (pidl1->mkid.cb && pidl2->mkid.cb) 487 487 { 488 // compare lengths first489 if (pidl1->mkid.cb != pidl2->mkid.cb)490 return FALSE;488 // compare lengths first 489 if (pidl1->mkid.cb != pidl2->mkid.cb) 490 return FALSE; 491 491 492 492 // _ILSimpleGetText(pidltemp1, szData1, MAX_PATH);
Note:
See TracChangeset
for help on using the changeset viewer.