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

Function idxWriteFree

modules/dasSQLITE/sqlite/shell.c:11370–11377  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

11368** Free the linked list of IdxWrite objects starting at pTab.
11369*/
11370static void idxWriteFree(IdxWrite *pTab){
11371 IdxWrite *pIter;
11372 IdxWrite *pNext;
11373 for(pIter=pTab; pIter; pIter=pNext){
11374 pNext = pIter->pNext;
11375 sqlite3_free(pIter);
11376 }
11377}
11378
11379
11380

Callers 1

sqlite3_expert_destroyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected