** Release memory previously allocated by tableColumnList(). */
| 19365 | ** Release memory previously allocated by tableColumnList(). |
| 19366 | */ |
| 19367 | static 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 |
no outgoing calls
no test coverage detected