2007-01-15 [colin] 2.7.1cvs3
authorColin Leroy <colin@colino.net>
Mon, 15 Jan 2007 17:09:05 +0000 (17:09 +0000)
committerColin Leroy <colin@colino.net>
Mon, 15 Jan 2007 17:09:05 +0000 (17:09 +0000)
* src/etpan/imap-thread.c
Fix invalid free on command-connection
error

ChangeLog
PATCHSETS
configure.ac
src/etpan/imap-thread.c

index dbbd006fb354bab87c14a18a00c95e8779b5356a..478885d2900f8a0eee5bb1a4bec6f8b861f8c121 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-15 [colin]     2.7.1cvs3
+
+       * src/etpan/imap-thread.c
+               Fix invalid free on command-connection
+               error
+
 2007-01-15 [wwp]       2.7.1cvs2
 
        * src/matcher_parser_lex.l
index 22b1c3f19be3204cc0a196af9d00eb24e31ac906..68a13b6dd0fc35e268d41c57f6f537e16d62a90d 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.100.2.46 -r 1.100.2.47 AUTHORS;  cvs diff -u -r 1.1.2.31 -r 1.1.2.32 src/gtk/authors.h;  ) > 2.7.0cvs31.patchset
 ( cvs diff -u -r 1.42.2.25 -r 1.42.2.26 NEWS;  cvs diff -u -r 1.8.2.29 -r 1.8.2.30 README;  cvs diff -u -r 1.1.2.14 -r 1.1.2.15 RELEASE_NOTES;  cvs diff -u -r 1.654.2.2312 -r 1.654.2.2313 configure.ac;  ) > 2.7.1cvs1.patchset
 ( cvs diff -u -r 1.16.2.9 -r 1.16.2.10 src/matcher_parser_lex.l;  cvs diff -u -r 1.8.2.6 -r 1.8.2.7 src/quote_fmt_lex.l;  cvs diff -u -r 1.25.2.19 -r 1.25.2.20 src/matcher_parser_parse.y;  ) > 2.7.1cvs2.patchset
+( cvs diff -u -r 1.1.4.68 -r 1.1.4.69 src/etpan/imap-thread.c;  ) > 2.7.1cvs3.patchset
index 391c91b06ac6b367ec8c64b1fc578a1e516ef240..fa99776e64906a68f9c49d3689570feff56c3046 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=7
 MICRO_VERSION=1
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=2
+EXTRA_VERSION=3
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index b31ea52248c33c840449bf2fea0b16e4ea0593b3..e4effe412d1b6cde21e70e7ec589dc22c3a8040b 100644 (file)
@@ -2689,6 +2689,7 @@ int socket_connect_cmd(mailimap * imap, const char * command,
        if (r != MAILIMAP_NO_ERROR_AUTHENTICATED
        &&  r != MAILIMAP_NO_ERROR_NON_AUTHENTICATED) {
                mailstream_close(s);
+               imap->stream = NULL;
                return r;
        }