aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2012-03-09 15:40:44 +0100
committerNick Mathewson <nickm@torproject.org>2012-05-16 12:15:13 -0400
commit679aa93e23f2c7f2e9c195f08834a7fc8c8d8b29 (patch)
tree1dcaab87a12695088d3c607d11f888c64031e68d
parent801923ac2112d1a54eaf4126800724bea90055eb (diff)
downloadtor-679aa93e23f2c7f2e9c195f08834a7fc8c8d8b29.tar.gz
tor-679aa93e23f2c7f2e9c195f08834a7fc8c8d8b29.zip
Fix month check in parse_http_time, add test
-rw-r--r--src/common/util.c2
-rw-r--r--src/test/test_util.c4
2 files changed, 6 insertions, 0 deletions
diff --git a/src/common/util.c b/src/common/util.c
index 5fa0896ae5..a03a576321 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -1451,6 +1451,8 @@ parse_http_time(const char *date, struct tm *tm)
month[3] = '\0';
/* Okay, now decode the month. */
+ /* set tm->tm_mon to dummy value so the check below fails. */
+ tm->tm_mon = -1;
for (i = 0; i < 12; ++i) {
if (!strcasecmp(MONTH_NAMES[i], month)) {
tm->tm_mon = i;
diff --git a/src/test/test_util.c b/src/test/test_util.c
index e239326a2d..cc0181c92f 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -121,6 +121,10 @@ test_util_parse_http_time(void *arg)
test_eq((time_t)775961302UL, tor_timegm(&a_time));
test_eq(0, parse_http_time("Mie Aug 4 0:48:22 1994", &a_time));
test_eq((time_t)775961302UL, tor_timegm(&a_time));
+ test_eq(0, parse_http_time("Sun, 1 Jan 2012 00:00:00 GMT", &a_time));
+ test_eq((time_t)1325376000UL, tor_timegm(&a_time));
+ test_eq(0, parse_http_time("Mon, 31 Dec 2012 00:00:00 GMT", &a_time));
+ test_eq((time_t)1356912000UL, tor_timegm(&a_time));
test_eq(-1, parse_http_time("2004-08-zz 99-99x99 GMT", &a_time));
test_eq(-1, parse_http_time("2011-03-32 00:00:00 GMT", &a_time));
test_eq(-1, parse_http_time("2011-03-30 24:00:00 GMT", &a_time));