summaryrefslogtreecommitdiff
path: root/time/unix/time.c
diff options
context:
space:
mode:
authorniq <niq@13f79535-47bb-0310-9956-ffa450edef68>2017-09-10 22:30:34 +0000
committerniq <niq@13f79535-47bb-0310-9956-ffa450edef68>2017-09-10 22:30:34 +0000
commita3e19dd87a1e4f09d89ff4e9540ad9d4aca07d18 (patch)
tree132013edfb5134436c84815adbb36891e67cece7 /time/unix/time.c
parent26764d8174f738a4369387baf017767bfae77035 (diff)
downloadlibapr-a3e19dd87a1e4f09d89ff4e9540ad9d4aca07d18.tar.gz
Bounds-check human-readable date fields (credit: Stefan Sperling)
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.6.x@1807976 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time/unix/time.c')
-rw-r--r--time/unix/time.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/time/unix/time.c b/time/unix/time.c
index dfa45e690..7f0958192 100644
--- a/time/unix/time.c
+++ b/time/unix/time.c
@@ -142,6 +142,9 @@ APR_DECLARE(apr_status_t) apr_time_exp_get(apr_time_t *t, apr_time_exp_t *xt)
static const int dayoffset[12] =
{306, 337, 0, 31, 61, 92, 122, 153, 184, 214, 245, 275};
+ if (xt->tm_mon < 0 || xt->tm_mon >= 12)
+ return APR_EBADDATE;
+
/* shift new year to 1st March in order to make leap year calc easy */
if (xt->tm_mon < 2)