Changeset 985 for trunk/dll/makelist.c


Ignore:
Timestamp:
Mar 1, 2008, 2:37:14 AM (17 years ago)
Author:
Gregg Young
Message:

Update sizes dialog (ticket 44); Make max command line length user settable (ticket 199); use xfree for free in most cases (ticket 212); initial code to check for valid ini file (ticket 102); Some additional refactoring and structure rework; Some documentation updates;

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/makelist.c

    r907 r985  
    1414  06 Apr 07 GKY Work around PM DragInfo and DrgFreeDISH limits
    1515  20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat
     16  29 Feb 08 GKY Use xfree where appropriate
    1617
    1718***********************************************************************/
     
    6869{
    6970  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);
    7473    if (li->list)
    7574      FreeList(li->list);
    76     free(li);
     75    xfree(li);
    7776  }
    7877}
     
    9291    _heap_check();
    9392#endif
    94     free(list);
     93    xfree(list);
    9594  }
    9695  DosPostEventSem(CompactSem);
Note: See TracChangeset for help on using the changeset viewer.