1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fix trivial compiler warnings. (CVS 3295)

FossilOrigin-Name: 3538beace8ece6339fe8aaf40852ce5e5e7da283
This commit is contained in:
danielk1977
2006-06-26 11:17:50 +00:00
parent 605903f42e
commit a2e48b24c7
5 changed files with 14 additions and 14 deletions

View File

@@ -850,7 +850,6 @@ void sqlite3VdbeFreeCursor(Vdbe *p, Cursor *pCx){
#ifndef SQLITE_OMIT_VIRTUALTABLE
if( pCx->pVtabCursor ){
sqlite3_vtab_cursor *pVtabCursor = pCx->pVtabCursor;
sqlite3_vtab *pVtab = pVtabCursor->pVtab;
const sqlite3_module *pModule = pCx->pModule;
p->inVtabMethod = 1;
pModule->xClose(pVtabCursor);