diff options
author | William Wilgus <wilgus.william@gmail.com> | 2021-07-20 00:04:36 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2021-07-20 23:25:31 +0000 |
commit | b91ad60d6390f20ac7b86e5ae71398cf341d944b (patch) | |
tree | 73c9f4e9f0c6fea8484db0da4888bf2a0449cb41 /firmware | |
parent | 966e210e6d699ba69c0f72a2661b0f6204293247 (diff) |
timefuncs.c valid_time() should return false if tm == NULL and not try to deref
luckily no one has
yet..
Change-Id: I4117db84b013fa826958aea635daa0a24ee534b6
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/common/timefuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/common/timefuncs.c b/firmware/common/timefuncs.c index 66854dea13..1405a8d926 100644 --- a/firmware/common/timefuncs.c +++ b/firmware/common/timefuncs.c @@ -86,13 +86,13 @@ static inline int rtc_read_datetime(struct tm *tm) #if CONFIG_RTC bool valid_time(const struct tm *tm) { - if (tm->tm_hour < 0 || tm->tm_hour > 23 || + if (!tm || (tm->tm_hour < 0 || tm->tm_hour > 23 || tm->tm_sec < 0 || tm->tm_sec > 59 || tm->tm_min < 0 || tm->tm_min > 59 || tm->tm_year < 100 || tm->tm_year > 199 || tm->tm_mon < 0 || tm->tm_mon > 11 || tm->tm_wday < 0 || tm->tm_wday > 6 || - tm->tm_mday < 1 || tm->tm_mday > 31) + tm->tm_mday < 1 || tm->tm_mday > 31)) return false; else return true; |