1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

removed unused local variables

This commit is contained in:
Kenichi Ishigaki 2014-07-21 08:34:30 +09:00
parent defae5918a
commit db5df57c93

View file

@ -2659,7 +2659,6 @@ static int perl_tokenizer_Next(
perl_tokenizer_cursor *c = (perl_tokenizer_cursor *) pCursor; perl_tokenizer_cursor *c = (perl_tokenizer_cursor *) pCursor;
int result; int result;
int n_retval; int n_retval;
STRLEN n_a;
char *token; char *token;
char *byteOffset; char *byteOffset;
I32 hop; I32 hop;
@ -2885,7 +2884,6 @@ static int perl_vt_New(const char *method,
/* check the return value */ /* check the return value */
if (count != 1 ) { if (count != 1 ) {
int i;
*pzErr = sqlite3_mprintf("vtab->VTAB_TO_DECLARE() should return one value, got %d", *pzErr = sqlite3_mprintf("vtab->VTAB_TO_DECLARE() should return one value, got %d",
count ); count );
SP -= count; /* Clear the stack */ SP -= count; /* Clear the stack */
@ -3126,7 +3124,6 @@ static int perl_vt_Open(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
static int perl_vt_Close(sqlite3_vtab_cursor *pVtabCursor){ static int perl_vt_Close(sqlite3_vtab_cursor *pVtabCursor){
dTHX; dTHX;
dSP; dSP;
int count;
perl_vtab_cursor *perl_pVTabCursor; perl_vtab_cursor *perl_pVTabCursor;
ENTER; ENTER;
@ -3181,7 +3178,7 @@ static int perl_vt_Filter( sqlite3_vtab_cursor *pVtabCursor,
static int perl_vt_Next(sqlite3_vtab_cursor *pVtabCursor){ static int perl_vt_Next(sqlite3_vtab_cursor *pVtabCursor){
dTHX; dTHX;
dSP; dSP;
int i, count; int count;
ENTER; ENTER;
SAVETMPS; SAVETMPS;