fix compile error
authorThorsten Maerz <torte@netztorte.de>
Wed, 27 Aug 2003 17:23:25 +0000 (17:23 +0000)
committerThorsten Maerz <torte@netztorte.de>
Wed, 27 Aug 2003 17:23:25 +0000 (17:23 +0000)
ChangeLog.claws
configure.ac
src/imap.c

index c55b9295a3ba4f44590a3c828f19a945e487113c..f591cf8cf6ffb6fd8f070de8d95a80949e5cb675 100644 (file)
@@ -1,3 +1,8 @@
+2003-08-27 [thorsten]  0.9.4claws39
+
+       * src/imap.c
+               fix compile error
+
 2003-08-26 [paul]      0.9.4claws38
 
        * sync with 0.9.4cvs9
index 7fd21c34afd74d19d28387713e986c168eb10129..a8eb2fde40d7f2e77523e19f65df1b3fcf88eb39 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=4
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=38
+EXTRA_VERSION=39
 if test $EXTRA_VERSION -eq 0; then
     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws
 else
index a284c7946000e4438c5916c9798b4163c00a3943..ea63ce5e67e48cfa892540802468fc940efad6aa 100644 (file)
@@ -1247,9 +1247,9 @@ static gint imap_scan_tree_recursive(IMAPSession *session, FolderItem *item)
        node = item->node->children;
        while (node != NULL) {
                FolderItem *old_item = FOLDER_ITEM(node->data);
-               new_item = NULL;
                GNode *next = node->next;
 
+               new_item = NULL;
                for (cur = item_list; cur != NULL; cur = cur->next) {
                        FolderItem *cur_item = FOLDER_ITEM(cur->data);
                        if (!strcmp2(old_item->path, cur_item->path)) {