Changeset 1038 for trunk/dll/makelist.c
- Timestamp:
- Jul 4, 2008, 10:33:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/makelist.c
r1036 r1038 91 91 _heap_check(); 92 92 #endif 93 # ifdef FORTIFY94 xfree(list[x], pszSrcFile, __LINE__);95 # else96 93 free(list[x]); 97 # endif98 94 } 99 95 #ifdef __DEBUG_ALLOC__ … … 270 266 for (x = 0; list[x]; x++) { 271 267 if (item == list[x]) { 272 # ifdef FORTIFY273 xfree(list[x], pszSrcFile, __LINE__);274 # else275 268 free(list[x]); 276 # endif277 269 list[x] = NULL; 278 270 for (y = x;; y++) {
Note:
See TracChangeset
for help on using the changeset viewer.