Skip to content
Snippets Groups Projects
Commit a477d854 authored by rswindell's avatar rswindell
Browse files

Paranoia checks in getnextevent():

If either localtime_r() or mktime() return a error result, don't use use the
non-sensical time.
Nelgin has reported that under some conditions, he sees:
Your time has been reduced due to an upcoming event on Wed Dec 31 1969 18:00:00
when using Ctrl-T (time info hot key).
I don't have an explanation for this, but if either of those function calls
failed in getnextevent(), something like this could happen. <shrug>
parent 8b002cf6
No related branches found
No related tags found
No related merge requests found
......@@ -160,8 +160,8 @@ extern "C" time_t DLLCALL getnextevent(scfg_t* cfg, event_t* event)
time_t tmptime;
struct tm tm, last_tm;
if(localtime_r(&now,&tm)==NULL)
memset(&tm,0,sizeof(tm));
if(localtime_r(&now,&tm) == NULL)
return 0;
for(i=0;i<cfg->total_events;i++) {
if(!cfg->event[i]->node || cfg->event[i]->node>cfg->sys_nodes
......@@ -179,9 +179,11 @@ extern "C" time_t DLLCALL getnextevent(scfg_t* cfg, event_t* event)
tm.tm_sec=0;
tm.tm_isdst=-1; /* Do not adjust for DST */
thisevent=mktime(&tm);
if(thisevent == -1)
continue;
tmptime=cfg->event[i]->last;
if(localtime_r(&tmptime,&last_tm)==NULL)
if(localtime_r(&tmptime,&last_tm) == NULL)
memset(&last_tm,0,sizeof(last_tm));
if(tm.tm_mday==last_tm.tm_mday && tm.tm_mon==last_tm.tm_mon)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment