Changeset 1029 for trunk/dll/mainwnd.c


Ignore:
Timestamp:
Jun 23, 2008, 3:30:16 AM (17 years ago)
Author:
Gregg Young
Message:

Fixed early memory free; Added free_... functions to make fortify checking easier; Added fortify scopes; Delete now moves to trash can on systems with the xworkplace trash can installed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/mainwnd.c

    r1027 r1029  
    5656  29 Feb 08 GKY Use xfree where appropriate
    5757  19 Jun 08 JBS Ticket 227: Allow temporary saving/deleting of the shutdown state of directory containers
     58  22 Jun 08 GKY Use free_... functions for fortify checking
    5859
    5960***********************************************************************/
     
    7677#include "comp.h"
    7778#include "datamin.h"
    78 #include "pathutil.h"                    // BldQuotedFileName
     79#include "pathutil.h"                   // BldQuotedFileName
    7980#include "errutil.h"                    // Dos_Error...
    8081#include "strutil.h"                    // GetPString
    81 #include "notebook.h"                        // CfgDlgProc CfgMenuInit
     82#include "notebook.h"                   // CfgDlgProc CfgMenuInit
    8283#include "command.h"                    // LINKCMDS
    8384#include "fm3dll.h"
     85#include "avl.h"                        // free_archivers
    8486
    8587#include "fortify.h"
     
    63556357      WinSendMsg((HWND) 0, WM_QUIT, MPVOID, MPVOID);
    63566358# ifdef FORTIFY
     6359  free_commands();
     6360  free_associations();
     6361  free_udir();
     6362  free_ldir();
     6363  free_archivers();
    63576364  Fortify_LeaveScope();
    63586365# endif
Note: See TracChangeset for help on using the changeset viewer.