mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 22:58:17 -04:00
DBD-SQLite: effort to resolve #44884; added a comment to the last DBIS line. looks like that line can be removed, too, but not sure yet (confirmed all the tests pass without it)
This commit is contained in:
parent
c7435338dd
commit
4764183032
1 changed files with 2 additions and 2 deletions
4
dbdimp.c
4
dbdimp.c
|
@ -28,7 +28,7 @@ void
|
||||||
sqlite_init(dbistate_t *dbistate)
|
sqlite_init(dbistate_t *dbistate)
|
||||||
{
|
{
|
||||||
dTHR;
|
dTHR;
|
||||||
DBIS = dbistate;
|
DBIS = dbistate; /* XXX: looks like this can be removed, right? */
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -554,7 +554,7 @@ sqlite_st_fetch (SV *sth, imp_sth_t *imp_sth)
|
||||||
|
|
||||||
imp_sth->nrow++;
|
imp_sth->nrow++;
|
||||||
|
|
||||||
av = DBIS->get_fbav(imp_sth);
|
av = DBIc_DBISTATE((imp_xxh_t *)imp_sth)->get_fbav(imp_sth);
|
||||||
for (i = 0; i < numFields; i++) {
|
for (i = 0; i < numFields; i++) {
|
||||||
int len;
|
int len;
|
||||||
char * val;
|
char * val;
|
||||||
|
|
Loading…
Add table
Reference in a new issue