summaryrefslogtreecommitdiff
path: root/ext/sqlite3/sqlite3.c
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-08-12 13:37:32 +0000
committerFelipe Pena <felipe@php.net>2008-08-12 13:37:32 +0000
commit9f40f81543ba5985038b0abcd01dea8bd80450fb (patch)
treedde0402357967b92f6477c75cadd2bcbacbda68d /ext/sqlite3/sqlite3.c
parenteae2c5390d8fa2d07cae8961ceca8a592d5be55b (diff)
downloadphp-git-9f40f81543ba5985038b0abcd01dea8bd80450fb.tar.gz
- MFH: Fixed bug #45798 (sqlite3 doesn't notice if variable was bound)
Diffstat (limited to 'ext/sqlite3/sqlite3.c')
-rw-r--r--ext/sqlite3/sqlite3.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c
index cd6037fffd..9015356580 100644
--- a/ext/sqlite3/sqlite3.c
+++ b/ext/sqlite3/sqlite3.c
@@ -1069,6 +1069,7 @@ PHP_METHOD(sqlite3stmt, execute)
/* If the ZVAL is null then it should be bound as that */
if (Z_TYPE_P(param->parameter) == IS_NULL) {
sqlite3_bind_null(stmt_obj->stmt, param->param_number);
+ zend_hash_move_forward(stmt_obj->bound_params);
continue;
}