[Commits] [SCM] claws branch, master, updated. 3.13.2-141-g8ceef64
claws at claws-mail.org
claws at claws-mail.org
Tue May 24 15:20:59 CEST 2016
The branch, master has been updated
via 8ceef647fca53c40a26dbaed7b8d8a64610cfd4a (commit)
from f7b5405defb3f1a4b124253a10c8cfe0e6aabeba (commit)
Summary of changes:
src/matcher.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 8ceef647fca53c40a26dbaed7b8d8a64610cfd4a
Author: Paul <paul at claws-mail.org>
Date: Tue May 24 14:20:52 2016 +0100
fix crash introduced in c7e1e0bbdf72269708a53075a4accecb61ebebe2
diff --git a/src/matcher.c b/src/matcher.c
index d0d7e15..83047c0 100644
--- a/src/matcher.c
+++ b/src/matcher.c
@@ -2575,6 +2575,8 @@ void prefs_matcher_read_config(void)
f = g_fopen(rcpath, "rb");
g_free(rcpath);
- matcher_parser_start_parsing(f);
- fclose(matcher_parserin);
+ if (f != NULL) {
+ matcher_parser_start_parsing(f);
+ fclose(matcher_parserin);
+ }
}
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list