** Destructor for an fsdir_cursor. */
| 6125 | ** Destructor for an fsdir_cursor. |
| 6126 | */ |
| 6127 | static int fsdirClose(sqlite3_vtab_cursor *cur){ |
| 6128 | fsdir_cursor *pCur = (fsdir_cursor*)cur; |
| 6129 | |
| 6130 | fsdirResetCursor(pCur); |
| 6131 | sqlite3_free(pCur); |
| 6132 | return SQLITE_OK; |
| 6133 | } |
| 6134 | |
| 6135 | /* |
| 6136 | ** Set the error message for the virtual table associated with cursor |
nothing calls this directly
no test coverage detected