Changeset 52
- Timestamp:
- Feb 12, 2003, 9:23:44 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eas.c
r23 r52 1 1 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 3 18 4 19 #define INCL_DOS … … 15 30 16 31 17 int main (int argc,char *argv[]) { 32 int main (int argc,char *argv[]) 33 { 18 34 19 35 HAB hab; … … 60 76 WinTerminate(hab); 61 77 } 62 FreeList(list); 78 if (list) 79 free(list); 63 80 return 0; 64 81 }
Note:
See TracChangeset
for help on using the changeset viewer.