[Commits] [SCM] claws branch, master, updated. 3.13.2-179-g74b625c
mones at claws-mail.org
mones at claws-mail.org
Thu Jul 14 11:59:55 CEST 2016
The branch, master has been updated
via 74b625c53e38ed53a585fe43df23f12d50d447a6 (commit)
via 4bee63af358db61367f987ef1b3dbad5070e1cad (commit)
from 5e02bd982ab0505bd75ffb17718e7750d7e2865f (commit)
Summary of changes:
AUTHORS | 1 +
src/codeconv.c | 4 +---
src/gtk/authors.h | 1 +
3 files changed, 3 insertions(+), 3 deletions(-)
- Log -----------------------------------------------------------------
commit 74b625c53e38ed53a585fe43df23f12d50d447a6
Author: Ricardo Mones <ricardo at mones.org>
Date: Thu Jul 14 11:59:22 2016 +0200
Update lists of authors
diff --git a/AUTHORS b/AUTHORS
index c907c6a..e761f31 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -305,4 +305,5 @@ contributors (in addition to the above; based on Changelog)
Arthur Huillet
Blatinox
Andy Balaam
+ Hanno Boeck
Ben Hutchings
diff --git a/src/gtk/authors.h b/src/gtk/authors.h
index 5caf8a6..1df2520 100644
--- a/src/gtk/authors.h
+++ b/src/gtk/authors.h
@@ -96,6 +96,7 @@ static char *CONTRIBS_LIST[] = {
"Laurent Bigonville",
"Jean-Luc Biord",
"Blatinox",
+"Hanno Boeck",
"Pavlo Bohmat",
"H. Merijn Brand",
"Eugene Brevdo",
commit 4bee63af358db61367f987ef1b3dbad5070e1cad
Author: Ricardo Mones <ricardo at mones.org>
Date: Thu Jul 14 11:52:43 2016 +0200
Fix bug #3573: Out of bounds read in macro LBREAK_IF_REQUIRED
Thanks Hanno Boeck for the patch!
diff --git a/src/codeconv.c b/src/codeconv.c
index d0fbf70..11b2311 100644
--- a/src/codeconv.c
+++ b/src/codeconv.c
@@ -1584,9 +1584,7 @@ gchar *conv_unmime_header(const gchar *str, const gchar *default_encoding,
left = MAX_LINELEN - 1; \
} \
} else if (destp == (guchar *)dest && left < 7) { \
- if (isspace(*(destp - 1))) \
- destp--; \
- else if (is_plain_text && isspace(*srcp)) \
+ if (is_plain_text && isspace(*srcp)) \
srcp++; \
if (*srcp) { \
*destp++ = '\n'; \
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list