1
0
Fork 0
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:
Kenichi Ishigaki 2019-08-18 20:12:36 +09:00
parent ccd1995967
commit 8b3a041003

View file

@ -484,7 +484,8 @@ static int perl_vt_Next(sqlite3_vtab_cursor *pVtabCursor){
static int perl_vt_Eof(sqlite3_vtab_cursor *pVtabCursor){
dTHX;
dSP;
int count, eof;
int count;
int eof = 1;
ENTER;
SAVETMPS;