MCPcopy Create free account
hub / github.com/audacity/audacity / fsdirClose

Function fsdirClose

lib-src/sqlite/shell.c:2762–2768  ·  view source on GitHub ↗

** Destructor for an fsdir_cursor. */

Source from the content-addressed store, hash-verified

2760** Destructor for an fsdir_cursor.
2761*/
2762static 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

Callers

nothing calls this directly

Calls 1

fsdirResetCursorFunction · 0.85

Tested by

no test coverage detected