Changeset 985 for trunk/dll/undel.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/undel.c

    r907 r985  
    1414  06 Aug 07 GKY Reduce DosSleep times (ticket 148)
    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***********************************************************************/
     
    146147  }
    147148  DosForceDelete("$UDELETE.#$#");
    148   if (undelinfo)
    149     free(undelinfo);
     149  xfree(undelinfo);
    150150  if (thmq) {
    151151    PostMsg(hwnd, UM_CONTAINER_FILLED, MPVOID, MPVOID);
     
    221221          Runtime_Error(pszSrcFile, __LINE__,
    222222                        GetPString(IDS_COULDNTSTARTTHREADTEXT));
    223           free(undelinfo);
     223          xfree(undelinfo);
    224224          listdone = TRUE;
    225225          WinDismissDlg(hwnd, 0);
Note: See TracChangeset for help on using the changeset viewer.