MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / idxConstraintFree

Function idxConstraintFree

modules/dasSQLITE/sqlite/shell.c:11314–11322  ·  view source on GitHub ↗

** Free all elements of the linked list starting at pConstraint. */

Source from the content-addressed store, hash-verified

11312** Free all elements of the linked list starting at pConstraint.
11313*/
11314static void idxConstraintFree(IdxConstraint *pConstraint){
11315 IdxConstraint *pNext;
11316 IdxConstraint *p;
11317
11318 for(p=pConstraint; p; p=pNext){
11319 pNext = p->pNext;
11320 sqlite3_free(p);
11321 }
11322}
11323
11324/*
11325** Free all elements of the linked list starting from pScan up until pLast

Callers 1

idxScanFreeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected