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 88383

This commit is contained in:
Peter Howkins 2018-07-04 23:40:58 +01:00
parent 70e5a9f044
commit e18054a5da

View file

@ -2974,7 +2974,7 @@ x_print_list_range(Calendar *c, CSA_sint32 appt_type, int item_data,
CSA_return_code stat;
CSA_entry_handle *list;
CSA_attribute *range_attrs;
CSA_enum *ops;
CSA_enum *ops = NULL;
int i;
CSA_uint32 a_total;
@ -3009,6 +3009,7 @@ x_print_list_range(Calendar *c, CSA_sint32 appt_type, int item_data,
0, B_FALSE, c->general->version);
stat = csa_list_entries(c->cal_handle, i, range_attrs,
ops, &a_total, &list, NULL);
free(ops);
if (stat != CSA_SUCCESS) {
return;
}