* debian/patches/series;
+ upstream/538128-mh-folder-access.patch: MH dirs are now correctly
parsed (Closes: 538128)
+ + upstream/537818-emptycharset.patch: handling empty charsets without
+ segfaulting (Closes: 537818)
-- Antonio Radici <antonio@dyne.org> Sat, 15 Aug 2009 00:32:49 +0100
# the following two patches are also in upstream hg repo
# plese drop them if there is a new release
upstream/538128-mh-folder-access.patch
+upstream/537818-emptycharset.patch
misc/hyphen-as-minus.patch
#misc/manpage-typos.patch
misc/smime_keys-manpage.patch
--- /dev/null
+--- a/init.c
++++ b/init.c
+@@ -1751,6 +1751,9 @@
+ char *p, *q = NULL, *s = safe_strdup (val);
+ int rc = 0, strict = strcmp (opt->option, "send_charset") == 0;
+
++ if (!s)
++ return rc;
++
+ for (p = strtok_r (s, ":", &q); p; p = strtok_r (NULL, ":", &q))
+ {
+ if (!*p)