dtcm: Coverity 88858

This commit is contained in:
Peter Howkins 2018-07-04 23:43:42 +01:00
parent e18054a5da
commit 8f2b74aa6d
1 changed files with 4 additions and 1 deletions

View File

@ -1982,12 +1982,15 @@ add_to_todo_list(CSA_entry_handle entry, ToDo *t) {
if (lines && lines->s) {
buf = (char *)ckalloc(cm_strlen(lines->s) + 1);
strcpy(buf, lines->s);
destroy_lines(lines);
} else {
buf = (char *)ckalloc(1);
buf[0] = '\0';
}
if(lines) {
destroy_lines(lines);
}
str = XmStringCreateLocalized(buf);
XmListAddItem(t->todo_list, str, 0);
free_appt_struct(&appt);