From: Antonio Radici Date: Wed, 27 May 2009 22:40:35 +0000 (+0100) Subject: patches/upstream/524420-segfault-reconnect-sasl.patch: sasl, mutt segfaults on reconn... X-Git-Tag: debian/1.5.19-4~7 X-Git-Url: https://git.llucax.com/software/mutt-debian.git/commitdiff_plain/411b5cc115c325ca397b206340a29dcb4ff312f8?hp=becf29463fbb7bbce06bb7af94844028c2efb57c patches/upstream/524420-segfault-reconnect-sasl.patch: sasl, mutt segfaults on reconnect to IMAPS server (Closes: 524420) --- diff --git a/debian/changelog b/debian/changelog index 9e2e58b..2d0ea88 100644 --- a/debian/changelog +++ b/debian/changelog @@ -19,6 +19,8 @@ mutt (1.5.19-4) unstable; urgency=low (Closes: 514960) * patches/misc/manpage-typos.patch + fixes some typos in the manpage (Closes: 428017) + * patches/upstream/524420-segfault-reconnect-sasl.patch + + sasl, mutt segfaults on reconnect to IMAPS server (Closes: 524420) -- Antonio Radici Tue, 26 May 2009 23:42:51 +0100 diff --git a/debian/patches/series b/debian/patches/series index 0824d89..555f2ac 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -33,6 +33,7 @@ upstream/530661-mandatory-doubledash.patch upstream/375530-index-weirdness.patch upstream/493719-segfault-imap-close.patch upstream/514960-certificate-insecure-algorithm.patch +upstream/524420-segfault-reconnect-sasl.patch misc/hyphen-as-minus.patch misc/manpage-typos.patch diff --git a/debian/patches/upstream/524420-segfault-reconnect-sasl.patch b/debian/patches/upstream/524420-segfault-reconnect-sasl.patch new file mode 100644 index 0000000..60e158b --- /dev/null +++ b/debian/patches/upstream/524420-segfault-reconnect-sasl.patch @@ -0,0 +1,14 @@ +Mutt crashes when connection that used SASL is closed +and reopened again (e.g. network problem) +see http://bugs.debian.org/524420 and http://bugs.mutt.org/3206 + +--- a/mutt_sasl.c ++++ b/mutt_sasl.c +@@ -481,6 +481,7 @@ + conn->conn_close = sasldata->msasl_close; + conn->conn_read = sasldata->msasl_read; + conn->conn_write = sasldata->msasl_write; ++ conn->conn_poll = sasldata->msasl_poll; + + /* release sasl resources */ + sasl_dispose (&sasldata->saslconn);