tfree() replaced with g_free() in ClearList(). - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 4ab8c5cd6833234946dd625d1fc3b9dd3a52aa99
 (DIR) parent ad86e233baab04a9453ae871040e1a3c04b417a0
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Sat, 27 Apr 2002 16:52:38 +0000
       
       free() replaced with g_free() in ClearList().
       
       
       Diffstat:
         M src/dopewars.c                      |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/src/dopewars.c b/src/dopewars.c
       t@@ -1347,7 +1347,7 @@ void InitList(DopeList *List)
         */
        void ClearList(DopeList *List)
        {
       -  free(List->Data);
       +  g_free(List->Data);
          InitList(List);
        }