mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 06:38:12 -04:00
removed unused local variables
This commit is contained in:
parent
defae5918a
commit
db5df57c93
1 changed files with 1 additions and 4 deletions
5
dbdimp.c
5
dbdimp.c
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue