Changeset 1038 for trunk/dll/makelist.c


Ignore:
Timestamp:
Jul 4, 2008, 10:33:59 PM (17 years ago)
Author:
Gregg Young
Message:

More fortify cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/makelist.c

    r1036 r1038  
    9191      _heap_check();
    9292#endif
    93 # ifdef FORTIFY
    94       xfree(list[x], pszSrcFile, __LINE__);
    95 # else
    9693      free(list[x]);
    97 # endif
    9894    }
    9995#ifdef __DEBUG_ALLOC__
     
    270266    for (x = 0; list[x]; x++) {
    271267      if (item == list[x]) {
    272 # ifdef FORTIFY
    273         xfree(list[x], pszSrcFile, __LINE__);
    274 # else
    275268        free(list[x]);
    276 # endif
    277269        list[x] = NULL;
    278270        for (y = x;; y++) {
Note: See TracChangeset for help on using the changeset viewer.