1
0
forked from pool/mutt

Accepting request 399631 from server:mail

- Yet an other crash due keywords.patch (boo#982129) 

  standard mailbox (boo#982129)

OBS-URL: https://build.opensuse.org/request/show/399631
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mutt?expand=0&rev=70
This commit is contained in:
Dominique Leuenberger 2016-06-07 21:46:55 +00:00 committed by Git OBS Bridge
commit 56de3f75ef
2 changed files with 30 additions and 4 deletions

View File

@ -3,10 +3,11 @@
doc/Makefile.in | 2 -
doc/Muttrc | 102 +++++++++++++++++++++++++++++++++++++++++---------------
doc/Muttrc.head | 2 -
headers.c | 9 ++++
imap/auth.c | 20 ++++++++++
init.h | 3 +
mx.c | 3 +
7 files changed, 112 insertions(+), 30 deletions(-)
8 files changed, 121 insertions(+), 30 deletions(-)
--- configure.ac
+++ configure.ac 2016-05-31 11:11:35.279958476 +0000
@ -319,8 +320,28 @@
{
/* NOTE: this _must_ be done before the check for mailcap! */
--- headers.c
+++ headers.c 2016-06-01 10:56:51.193585638 +0000
@@ -360,6 +360,9 @@ void mutt_scan_labels(CONTEXT *ctx)
+++ headers.c 2016-06-02 06:52:06.767101363 +0000
@@ -220,6 +220,9 @@ void mutt_label_ref_dec(ENVELOPE *env)
uintptr_t count;
LIST *label;
+ if (!Labels)
+ return;
+
for (label = env->labels; label; label = label->next)
{
if (label->data == NULL)
@@ -241,6 +244,9 @@ void mutt_label_ref_inc(ENVELOPE *env)
uintptr_t count;
LIST *label;
+ if (!Labels)
+ return;
+
for (label = env->labels; label; label = label->next)
{
if (label->data == NULL)
@@ -360,6 +366,9 @@ void mutt_scan_labels(CONTEXT *ctx)
{
int i;

View File

@ -1,8 +1,13 @@
-------------------------------------------------------------------
Thu Jun 2 06:58:11 UTC 2016 - werner@suse.de
- Yet an other crash due keywords.patch (boo#982129)
-------------------------------------------------------------------
Wed Jun 1 11:04:06 UTC 2016 - werner@suse.de
- Fix crash due keywords.patch which stumble over not existing
standard mailbox
standard mailbox (boo#982129)
-------------------------------------------------------------------
Tue May 31 12:35:33 UTC 2016 - werner@suse.de