** Free the ZipfileEntry structure indicated by the only argument. */
| 6260 | ** Free the ZipfileEntry structure indicated by the only argument. |
| 6261 | */ |
| 6262 | static void zipfileEntryFree(ZipfileEntry *p){ |
| 6263 | if( p ){ |
| 6264 | sqlite3_free(p->cds.zFile); |
| 6265 | sqlite3_free(p); |
| 6266 | } |
| 6267 | } |
| 6268 | |
| 6269 | /* |
| 6270 | ** Release resources that should be freed at the end of a write |
no outgoing calls
no test coverage detected