Changeset 52


Ignore:
Timestamp:
Feb 12, 2003, 9:23:44 PM (23 years ago)
Author:
root
Message:

Free list with free() since we don't allocate list contents

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eas.c

    r23 r52  
    11
    2 /* $Id$ */
     2/***********************************************************************
     3
     4  $Id$
     5
     6  EA viewer applet
     7
     8  Copyright (c) 1993-98 M. Kimes
     9  Copyright (c) 2002 Steven H.Levine
     10
     11  Revisions     16 Oct 02 SHL - Reformat
     12                08 Feb 03 SHL - Free list with free() since we don't
     13                                allocate list contents
     14
     15***********************************************************************/
     16
     17
    318
    419#define INCL_DOS
     
    1530
    1631
    17 int main (int argc,char *argv[]) {
     32int main (int argc,char *argv[])
     33{
    1834
    1935  HAB         hab;
     
    6076    WinTerminate(hab);
    6177  }
    62   FreeList(list);
     78  if (list)
     79    free(list);
    6380  return 0;
    6481}
Note: See TracChangeset for help on using the changeset viewer.