summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorMladen Turk <mturk@apache.org>2021-11-21 17:13:52 +0000
committerMladen Turk <mturk@apache.org>2021-11-21 17:13:52 +0000
commitfc78d9d92b7cc139d74910858e070affd5349d41 (patch)
treeca4623d1829a1ca00f1b16ef6fc7ca392a6dcf03 /time
parent96648e244d914e7482b71a5cfdbb9b95f9ccd1e9 (diff)
downloadapr-fc78d9d92b7cc139d74910858e070affd5349d41.tar.gz
Add missing bits from CVE-2021-35940 applied to 1.7.x branch
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1895239 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time')
-rw-r--r--time/win32/time.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/time/win32/time.c b/time/win32/time.c
index 02b272360..ac75b7b6f 100644
--- a/time/win32/time.c
+++ b/time/win32/time.c
@@ -54,6 +54,9 @@ static void SystemTimeToAprExpTime(apr_time_exp_t *xt, SYSTEMTIME *tm)
static const int dayoffset[12] =
{0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334};
+ if (tm->wMonth < 1 || tm->wMonth > 12)
+ return;
+
/* Note; the caller is responsible for filling in detailed tm_usec,
* tm_gmtoff and tm_isdst data when applicable.
*/