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

Function idxTableFree

modules/dasSQLITE/sqlite/shell.c:11358–11365  ·  view source on GitHub ↗

** Free the linked list of IdxTable objects starting at pTab. */

Source from the content-addressed store, hash-verified

11356** Free the linked list of IdxTable objects starting at pTab.
11357*/
11358static void idxTableFree(IdxTable *pTab){
11359 IdxTable *pIter;
11360 IdxTable *pNext;
11361 for(pIter=pTab; pIter; pIter=pNext){
11362 pNext = pIter->pNext;
11363 sqlite3_free(pIter);
11364 }
11365}
11366
11367/*
11368** Free the linked list of IdxWrite objects starting at pTab.

Callers 1

sqlite3_expert_destroyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected