Free the fields of a partially-parsed multi-arg function item. */
| 887 | |
| 888 | /* Free the fields of a partially-parsed multi-arg function item. */ |
| 889 | static void func_item_fields_free(cbm_return_item_t *item) { |
| 890 | safe_str_free(&item->variable); |
| 891 | safe_str_free(&item->property); |
| 892 | safe_str_free(&item->func); |
| 893 | func_args_free(item->args, item->arg_count); |
| 894 | item->args = NULL; |
| 895 | item->arg_count = 0; |
| 896 | } |
| 897 | |
| 898 | /* Free the function-call fields of a WHERE condition (#874). */ |
| 899 | static void cond_func_fields_free(cbm_condition_t *c) { |
no test coverage detected