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

Function freeColumnList

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

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

Source from the content-addressed store, hash-verified

13722** Release memory previously allocated by tableColumnList().
13723*/
13724static void freeColumnList(char **azCol){
13725 int i;
13726 for(i=1; azCol[i]; i++){
13727 sqlite3_free(azCol[i]);
13728 }
13729 /* azCol[0] is a static string */
13730 sqlite3_free(azCol);
13731}
13732
13733/*
13734** 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