MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / func_item_fields_free

Function func_item_fields_free

src/cypher/cypher.c:889–896  ·  view source on GitHub ↗

Free the fields of a partially-parsed multi-arg function item. */

Source from the content-addressed store, hash-verified

887
888/* Free the fields of a partially-parsed multi-arg function item. */
889static 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). */
899static void cond_func_fields_free(cbm_condition_t *c) {

Callers 1

parse_condition_lhsFunction · 0.85

Calls 2

safe_str_freeFunction · 0.85
func_args_freeFunction · 0.85

Tested by

no test coverage detected