diff options
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index 68574ef3ed..8778b1d89f 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -1432,7 +1432,7 @@ static int php_sqlite_fetch(struct php_sqlite_result *rres TSRMLS_DC) { const char **rowdata, **colnames; int ret, i, base; - char *errtext = NULL, *colname; + char *errtext = NULL; next_row: ret = sqlite_step(rres->vm, &rres->ncolumns, &rowdata, &colnames); |