cvsuser     03/07/15 18:03:12

  Modified:    .        pdump.c
  Log:
  Use mem_sys_free to free memory allocated by mem_sys_allocate
  
  Revision  Changes    Path
  1.23      +2 -2      parrot/pdump.c
  
  Index: pdump.c
  ===================================================================
  RCS file: /cvs/public/parrot/pdump.c,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -w -r1.22 -r1.23
  --- pdump.c   5 Jun 2003 09:35:41 -0000       1.22
  +++ pdump.c   16 Jul 2003 01:03:12 -0000      1.23
  @@ -1,7 +1,7 @@
   /* pdump.c
    *  Copyright: (When this is determined...it will go here)
    *  CVS Info
  - *     $Id: pdump.c,v 1.22 2003/06/05 09:35:41 leo Exp $
  + *     $Id: pdump.c,v 1.23 2003/07/16 01:03:12 scog Exp $
    *  Overview:
    *     A program to dump pack files to human readable form.
    *  Data Structure and Algorithms:
  @@ -168,7 +168,7 @@
               exit(1);
           }
           fclose(fp);
  -        free(pack);
  +        mem_sys_free(pack);
           Parrot_exit(0);
       }
   
  
  
  

Reply via email to