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

Function freeColumnList

modules/dasSQLITE/sqlite/shell.c:19367–19374  ·  view source on GitHub ↗

** Release memory previously allocated by tableColumnList(). */

Source from the content-addressed store, hash-verified

19365** Release memory previously allocated by tableColumnList().
19366*/
19367static void freeColumnList(char **azCol){
19368 int i;
19369 for(i=1; azCol[i]; i++){
19370 sqlite3_free(azCol[i]);
19371 }
19372 /* azCol[0] is a static string */
19373 sqlite3_free(azCol);
19374}
19375
19376/*
19377** Return a list of pointers to strings which are the names of all

Callers 2

tableColumnListFunction · 0.85
dump_callbackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected