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

Function cond_func_fields_free

src/cypher/cypher.c:899–904  ·  view source on GitHub ↗

Free the function-call fields of a WHERE condition (#874). */

Source from the content-addressed store, hash-verified

897
898/* Free the function-call fields of a WHERE condition (#874). */
899static void cond_func_fields_free(cbm_condition_t *c) {
900 safe_str_free(&c->func);
901 func_args_free(c->args, c->arg_count);
902 c->args = NULL;
903 c->arg_count = 0;
904}
905
906/* Parse IN [val, val, ...] list. Returns expr_leaf or NULL on error. */
907static cbm_expr_t *parse_in_list(parser_t *p, cbm_condition_t *c) {

Callers 1

parse_condition_opFunction · 0.85

Calls 2

safe_str_freeFunction · 0.85
func_args_freeFunction · 0.85

Tested by

no test coverage detected