Changeset 1039 for trunk/dll/makelist.c


Ignore:
Timestamp:
Jul 6, 2008, 12:16:21 AM (17 years ago)
Author:
Gregg Young
Message:

Removed unnecessary xfrees and included fortify.h where needed; moved several misplaced (x)frees;

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/makelist.c

    r1038 r1039  
    7575    if (li->list)
    7676      FreeList(li->list);
    77     xfree(li, pszSrcFile, __LINE__);
     77    free(li);
    7878# ifdef FORTIFY
    7979  //Fortify_LeaveScope();
     
    9696    _heap_check();
    9797#endif
    98     xfree(list, pszSrcFile, __LINE__);
     98    free(list);
    9999# ifdef FORTIFY
    100100  //Fortify_LeaveScope();
Note: See TracChangeset for help on using the changeset viewer.