2007-01-15 [colin] 2.7.1cvs3

* src/etpan/imap-thread.c
		Fix invalid free on command-connection
		error
This commit is contained in:
Colin Leroy 2007-01-15 17:09:05 +00:00
parent 827ab119d5
commit 1c06c9d380
4 changed files with 9 additions and 1 deletions

View file

@ -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

View file

@ -2260,3 +2260,4 @@
( 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

View 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=

View 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;
}