From: Peter Howkins Date: Wed, 4 Jul 2018 23:00:57 +0000 (+0100) Subject: dtcm: Coverity 89502 X-Git-Tag: 2.3.0a~157 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=caee0e9cb5ed483081f536a57acb5f8532054f58;p=oweals%2Fcde.git dtcm: Coverity 89502 --- diff --git a/cde/programs/dtcm/dtcm/blist.c b/cde/programs/dtcm/dtcm/blist.c index aee694e4..98139a73 100644 --- a/cde/programs/dtcm/dtcm/blist.c +++ b/cde/programs/dtcm/dtcm/blist.c @@ -453,8 +453,14 @@ blist_init_names(Calendar *c) { blist_name_append(c, get_char_prop(p, CP_DEFAULTCAL), BLIST_ACTIVE); namelist = cm_strdup(get_char_prop(p, CP_DAYCALLIST)); - if (namelist == NULL || *namelist == '\0' ) + if(namelist == NULL) { return; + } + + if(*namelist == '\0') { + free(namelist); + return; + } name = strtok(namelist, " "); while (name) {