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