MCPcopy Create free account
hub / github.com/audacity/audacity / idxConstraintFree

Function idxConstraintFree

lib-src/sqlite/shell.c:9412–9420  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

9410** Free all elements of the linked list starting at pConstraint.
9411*/
9412static void idxConstraintFree(IdxConstraint *pConstraint){
9413 IdxConstraint *pNext;
9414 IdxConstraint *p;
9415
9416 for(p=pConstraint; p; p=pNext){
9417 pNext = p->pNext;
9418 sqlite3_free(p);
9419 }
9420}
9421
9422/*
9423** 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