talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 72510f27b10889e119b42804835e8beaf70bc18d
parent d4fa1c076942efbf17094123c14530d607fb6d09
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Thu,  8 Jan 2015 22:51:04 +0100

RSSyl: Day-of-week name in RFC822 timestamps is optional.

Diffstat:
Msrc/plugins/rssyl/libfeed/date.c | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/plugins/rssyl/libfeed/date.c b/src/plugins/rssyl/libfeed/date.c @@ -132,8 +132,11 @@ time_t parseRFC822Date(gchar *date) if (c != NULL) setlocale(LC_TIME, "C"); - if (!strptime(date, "%a, %d %b %Y %H:%M:%S %Z", &t) && - !strptime(date, "%a, %d %b %Y %H:%M %Z", &t)) { + if (date != NULL && + !strptime(date, "%a, %d %b %Y %H:%M:%S %Z", &t) && + !strptime(date, "%a, %d %b %Y %H:%M %Z", &t) && + !strptime(date, "%d %b %Y %H:%M:%S %Z", &t) && + !strptime(date, "%d %b %Y %H:%M %Z", &t)) { g_warning("Invalid RFC822 date!\n"); if (c != NULL) setlocale(LC_TIME, c);