** Free the linked list of IdxWrite objects starting at pTab. */
| 11368 | ** Free the linked list of IdxWrite objects starting at pTab. |
| 11369 | */ |
| 11370 | static void idxWriteFree(IdxWrite *pTab){ |
| 11371 | IdxWrite *pIter; |
| 11372 | IdxWrite *pNext; |
| 11373 | for(pIter=pTab; pIter; pIter=pNext){ |
| 11374 | pNext = pIter->pNext; |
| 11375 | sqlite3_free(pIter); |
| 11376 | } |
| 11377 | } |
| 11378 | |
| 11379 | |
| 11380 |
no outgoing calls
no test coverage detected