** Destructor for an fsdir_cursor. */
| 2760 | ** Destructor for an fsdir_cursor. |
| 2761 | */ |
| 2762 | static int fsdirClose(sqlite3_vtab_cursor *cur){ |
| 2763 | fsdir_cursor *pCur = (fsdir_cursor*)cur; |
| 2764 | |
| 2765 | fsdirResetCursor(pCur); |
| 2766 | sqlite3_free(pCur); |
| 2767 | return SQLITE_OK; |
| 2768 | } |
| 2769 | |
| 2770 | /* |
| 2771 | ** Set the error message for the virtual table associated with cursor |
nothing calls this directly
no test coverage detected