Changeset 985 for trunk/dll/makelist.c
- Timestamp:
- Mar 1, 2008, 2:37:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/makelist.c
r907 r985 14 14 06 Apr 07 GKY Work around PM DragInfo and DrgFreeDISH limits 15 15 20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat 16 29 Feb 08 GKY Use xfree where appropriate 16 17 17 18 ***********************************************************************/ … … 68 69 { 69 70 if (li) { 70 if (li->ulitemID) 71 free(li->ulitemID); 72 if (li->cbFile) 73 free(li->cbFile); 71 xfree(li->ulitemID); 72 xfree(li->cbFile); 74 73 if (li->list) 75 74 FreeList(li->list); 76 free(li);75 xfree(li); 77 76 } 78 77 } … … 92 91 _heap_check(); 93 92 #endif 94 free(list);93 xfree(list); 95 94 } 96 95 DosPostEventSem(CompactSem);
Note:
See TracChangeset
for help on using the changeset viewer.