commit d522d8490e9de2f99e3352dd402f2a8f5792bfe1
parent a3d780fa48454a12d79202d0272b28b05d8cc3b9
Author: Colin Leroy <colin@colino.net>
Date: Wed, 16 May 2012 08:02:03 +0000
2012-05-16 [colin] 3.8.0cvs45
* src/common/utils.c
And fix leak
Diffstat:
4 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-16 [colin] 3.8.0cvs45
+
+ * src/common/utils.c
+ And fix leak
+
2012-05-16 [colin] 3.8.0cvs44
* src/common/utils.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4361,3 +4361,4 @@
( cvs diff -u -r 1.5.2.32 -r 1.5.2.33 src/gtk/description_window.c; ) > 3.8.0cvs42.patchset
( cvs diff -u -r 1.75.2.69 -r 1.75.2.70 src/matcher.c; ) > 3.8.0cvs43.patchset
( cvs diff -u -r 1.36.2.196 -r 1.36.2.197 src/common/utils.c; ) > 3.8.0cvs44.patchset
+( cvs diff -u -r 1.36.2.197 -r 1.36.2.198 src/common/utils.c; ) > 3.8.0cvs45.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=8
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=44
+EXTRA_VERSION=45
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/common/utils.c b/src/common/utils.c
@@ -2330,6 +2330,7 @@ gint remove_numbered_files(const gchar *dir, guint first, guint last)
g_free(filename);
return -1;
}
+ g_free(filename);
return 0;
}