eliot-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Eliot-dev] eliot/dic dic_search.c


From: eliot-dev
Subject: [Eliot-dev] eliot/dic dic_search.c
Date: Sun, 08 Oct 2006 18:24:17 +0000

CVSROOT:        /cvsroot/eliot
Module name:    eliot
Changes by:     Olivier Teulière <ipkiss>      06/10/08 18:24:17

Modified files:
        dic            : dic_search.c 

Log message:
        Fixed more memory leaks of the same kind

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/eliot/dic/dic_search.c?cvsroot=eliot&r1=1.17&r2=1.18

Patches:
Index: dic_search.c
===================================================================
RCS file: /cvsroot/eliot/eliot/dic/dic_search.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- dic_search.c        8 Oct 2006 18:12:17 -0000       1.17
+++ dic_search.c        8 Oct 2006 18:24:17 -0000       1.18
@@ -280,6 +280,7 @@
             }
         }
     }
+    free(tmp_rack);
 }
 
 /****************************************/
@@ -357,6 +358,7 @@
             wordlist[i][j] = tmp_buff[i][j];
         }
     }
+    free(tmp_word);
 }
 
 /****************************************/
@@ -419,6 +421,7 @@
             wordlist[i][j] = tmp_buff[i][j];
         }
     }
+    free(tmp_word);
 }
 
 
@@ -527,6 +530,7 @@
             wordlist[i][j] = tmp_buff[i][j];
         }
     }
+    free(tmp_mask);
 }
 
 /****************************************/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]