2004-09-28 [colin] 0.9.12cvs109
authorColin Leroy <colin@colino.net>
Tue, 28 Sep 2004 09:35:37 +0000 (09:35 +0000)
committerColin Leroy <colin@colino.net>
Tue, 28 Sep 2004 09:35:37 +0000 (09:35 +0000)
* src/mainwindow.c
Fix uninialized var

ChangeLog.claws
PATCHSETS
configure.ac
src/mainwindow.c

index e583771cca0b8316accec69e0c89c6ed9bebbba3..fab413be45c7b1636f460f7e273db001aacbd1a2 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-28 [colin]     0.9.12cvs109
+
+       * src/mainwindow.c
+               Fix uninialized var
+
 2004-09-28 [colin]     0.9.12cvs108
 
        * src/addressbook.c
 2004-09-28 [colin]     0.9.12cvs108
 
        * src/addressbook.c
index fbf0c9abc319851f33541426041f46a1471c492a..afe9bf278c7af85bd55e861c30eae8719a0ab688 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
@@ -91,3 +91,4 @@
 ( cvs diff -u -r 1.177 -r 1.178 src/inc.c; ) > 0.9.12cvs106.patchset
 ( cvs diff -u -r 1.71 -r 1.73 src/addressbook.c; ) > 0.9.12cvs107.patchset
 ( cvs diff -u -r 1.73 -r 1.74 src/addressbook.c; ) > 0.9.12cvs108.patchset
 ( cvs diff -u -r 1.177 -r 1.178 src/inc.c; ) > 0.9.12cvs106.patchset
 ( cvs diff -u -r 1.71 -r 1.73 src/addressbook.c; ) > 0.9.12cvs107.patchset
 ( cvs diff -u -r 1.73 -r 1.74 src/addressbook.c; ) > 0.9.12cvs108.patchset
+( cvs diff -u -r 1.306 -r 1.307 src/mainwindow.c; ) > 0.9.12cvs109.patchset
index 4b5eb5191e2403420a58606aa550066b6449b02d..80b29d70b99d3c93614a39684b33321d88395828 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=12
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=12
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=108
+EXTRA_VERSION=109
 EXTRA_RELEASE=
 
 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
 EXTRA_RELEASE=
 
 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
index 17acb0b4d292d588ef586dfb84f2a50d484994be..e940db7c6148f0f7289d16feeac417d8fef29aa5 100644 (file)
@@ -1552,7 +1552,7 @@ void main_window_progress_set(MainWindow *mainwin, gint cur, gint total)
 void main_window_empty_trash(MainWindow *mainwin, gboolean confirm)
 {
        GList *list;
 void main_window_empty_trash(MainWindow *mainwin, gboolean confirm)
 {
        GList *list;
-       guint has_trash;
+       guint has_trash = 0;
        Folder *folder;
 
        for (has_trash = 0, list = folder_get_list(); list != NULL; list = list->next) {
        Folder *folder;
 
        for (has_trash = 0, list = folder_get_list(); list != NULL; list = list->next) {