2006-05-17 [colin] 2.2.0cvs24
* src/mh.c Fix leak
This commit is contained in:
parent
2d14a59c09
commit
85890787b4
4 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-05-17 [colin] 2.2.0cvs24
|
||||
|
||||
* src/mh.c
|
||||
Fix leak
|
||||
|
||||
2006-05-16 [colin] 2.2.0cvs23
|
||||
|
||||
* src/mainwindow.c
|
||||
|
|
|
@ -1493,3 +1493,4 @@
|
|||
( cvs diff -u -r 1.382.2.271 -r 1.382.2.272 src/compose.c; ) > 2.2.0cvs21.patchset
|
||||
( cvs diff -u -r 1.274.2.111 -r 1.274.2.112 src/mainwindow.c; ) > 2.2.0cvs22.patchset
|
||||
( cvs diff -u -r 1.274.2.112 -r 1.274.2.114 src/mainwindow.c; ) > 2.2.0cvs23.patchset
|
||||
( cvs diff -u -r 1.79.2.26 -r 1.79.2.27 src/mh.c; ) > 2.2.0cvs24.patchset
|
||||
|
|
|
@ -11,7 +11,7 @@ MINOR_VERSION=2
|
|||
MICRO_VERSION=0
|
||||
INTERFACE_AGE=0
|
||||
BINARY_AGE=0
|
||||
EXTRA_VERSION=23
|
||||
EXTRA_VERSION=24
|
||||
EXTRA_RELEASE=
|
||||
EXTRA_GTK2_VERSION=
|
||||
|
||||
|
|
3
src/mh.c
3
src/mh.c
|
@ -1132,6 +1132,9 @@ static gint mh_get_flags(Folder *folder, FolderItem *item,
|
|||
}
|
||||
fclose(mh_sequences_file);
|
||||
}
|
||||
|
||||
g_free(mh_sequences_filename);
|
||||
|
||||
if (unseen_list) {
|
||||
gchar *cur = NULL;
|
||||
gchar *token = NULL, *next = NULL, *boundary = NULL;
|
||||
|
|
Loading…
Reference in a new issue