Ethereal-cvs: [ethereal-cvs] cvs commit: ethereal util.c

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Thu, 7 Sep 2000 04:57:50 -0500 (CDT)
guy         2000/09/07 04:57:45 CDT

  Modified files:
    .                    util.c 
  Log:
  Always use "g_free()" to free "ifc.ifc_buf"; it's set to a value
  allocated by "g_malloc()", and one should always use "g_free()" to free
  stuff allocated with "g_malloc()" (using "free()" works if GLib isn't
  compiled with any special memory allocator debugging/profiling options,
  but doesn't work if it is compiled with those options).
  
  Revision  Changes    Path
  1.43      +2 -2      ethereal/util.c