1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

dtcm: Coverity 88675

This commit is contained in:
Peter Howkins 2018-07-04 22:14:31 +01:00
parent 4d0c2752f7
commit b0a656cf0e

View file

@ -285,7 +285,7 @@ DeriveNewStartTime(
Tick end_date;
Tick an_event;
int num_events;
RepeatEventState *res;
RepeatEventState *res = NULL;
/* Count the number of events from the start time to the current time */
end_date = old_re->re_end_date;
@ -309,6 +309,8 @@ DeriveNewStartTime(
;
}
free(res);
return an_event;
}