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

    r907 r985  
    2424  27 Sep 07 SHL Correct ULONGLONG size formatting
    2525  30 Dec 07 GKY Use CommaFmtULL
     26  29 Feb 08 GKY Use xfree where appropriate
    2627
    2728***********************************************************************/
     
    463464      if (pis->lasthwndMenu)
    464465        WinDestroyWindow(pis->lasthwndMenu);
    465       free(pis);
     466      xfree(pis);
    466467      return oldproc(hwnd, msg, mp1, mp2);
    467468    }
     
    882883  case WM_DESTROY:
    883884    pfs = WinQueryWindowPtr(hwnd, QWL_USER);
    884     if (pfs)
    885       free(pfs);
     885    xfree(pfs);
    886886    break;
    887887  }
Note: See TracChangeset for help on using the changeset viewer.