fix memleak reported by Martin Kluge (see: "[ 599677 ] Very small memory leak in...
authorAlfons Hoogervorst <alfons@proteus.demon.nl>
Sat, 24 Aug 2002 17:35:48 +0000 (17:35 +0000)
committerAlfons Hoogervorst <alfons@proteus.demon.nl>
Sat, 24 Aug 2002 17:35:48 +0000 (17:35 +0000)
ChangeLog.claws
configure.in
src/matcher.c

index 5c09f84b079cc7908e65000d1ee0a67a872c2386..0d2c186b55c01b47428235ce6869e774de93a234 100644 (file)
@@ -1,3 +1,9 @@
+2002-08-24 [alfons]    0.8.2claws116
+
+       * src/matcher.c
+               fix memleak reported by Martin Kluge
+               (see: "[ 599677 ] Very small memory leak in 0.81claws115")
+
 2002-08-24 [oliver]    0.8.2claws115
 
        * src/prefs_toolbar.c
index 0d7c65ab9949bea7c256483887f10728b5d4ee5b..a622f923e51eeb2a956e389ed41147331ef2b8f8 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=8
 MICRO_VERSION=1
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws115
+EXTRA_VERSION=claws116
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index a4f2ac7195f1866e432d253ea63b2bd632a2e7f1..3ee7d22aaab6911c785c8d49e0998363545e93eb 100644 (file)
@@ -328,6 +328,7 @@ gboolean matcherprop_match_execute(MatcherProp * prop, MsgInfo * info)
        retval = system(cmd);
        debug_print("Command exit code: %d\n", retval);
 
+       g_free(cmd);
        return (retval == 0);
 }