From: Peter Howkins Date: Fri, 13 Jul 2018 18:23:05 +0000 (+0100) Subject: dtcm: Coverity 88884 X-Git-Tag: 2.3.0a~63 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f4a5433f32b904ec64afc1a24d1460dd84df91f9;p=oweals%2Fcde.git dtcm: Coverity 88884 --- diff --git a/cde/programs/dtcm/dtcm/weekglance.c b/cde/programs/dtcm/dtcm/weekglance.c index 95554a99..e68e22e2 100644 --- a/cde/programs/dtcm/dtcm/weekglance.c +++ b/cde/programs/dtcm/dtcm/weekglance.c @@ -1024,6 +1024,7 @@ format_entry(Paint_cache *cache_entry, char *buf1, char *buf2, struct tm *tm; _Xltimeparams localtime_buf; + if (cache_entry == NULL || cache_entry->summary == NULL) return; tick = cache_entry->start_time; end_tick = cache_entry->end_time; @@ -1033,7 +1034,6 @@ format_entry(Paint_cache *cache_entry, char *buf1, char *buf2, * then maxchars */ *buf1 = *buf2 = '\0'; - if (cache_entry == NULL || cache_entry->summary == NULL) return; tm = _XLocaltime(&tick, localtime_buf); hour1 = tm->tm_hour; min1 = tm->tm_min;