From: Wez Furlong Date: Thu, 17 Apr 2003 17:15:36 +0000 (+0000) Subject: WS X-Git-Tag: RELEASE_0_6~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c53b5743df36ecf6917806a770e9f7ba820184ba;p=php WS --- diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index c7ebf8b35e..bb3bc69a2e 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -354,7 +354,7 @@ PHP_FUNCTION(sqlite_fetch_array) /* now populate the result */ for (j = 0; j < res->ncolumns; j++) { if (mode & PHPSQLITE_NUM) { - if (res->table[i +j] == NULL) { + if (res->table[i + j] == NULL) { add_index_null(return_value, j); } else { add_index_string(return_value, j, res->table[i + j], 1);