mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
initialize eof (fix #55)
This commit is contained in:
parent
ccd1995967
commit
8b3a041003
1 changed files with 2 additions and 1 deletions
|
@ -484,7 +484,8 @@ static int perl_vt_Next(sqlite3_vtab_cursor *pVtabCursor){
|
||||||
static int perl_vt_Eof(sqlite3_vtab_cursor *pVtabCursor){
|
static int perl_vt_Eof(sqlite3_vtab_cursor *pVtabCursor){
|
||||||
dTHX;
|
dTHX;
|
||||||
dSP;
|
dSP;
|
||||||
int count, eof;
|
int count;
|
||||||
|
int eof = 1;
|
||||||
|
|
||||||
ENTER;
|
ENTER;
|
||||||
SAVETMPS;
|
SAVETMPS;
|
||||||
|
|
Loading…
Add table
Reference in a new issue