diff options
author | Julien Pauli <jpauli@php.net> | 2015-01-09 16:24:14 +0100 |
---|---|---|
committer | Julien Pauli <jpauli@php.net> | 2015-01-09 16:24:14 +0100 |
commit | dc810543cfaedd659a81507887e242a3680d5883 (patch) | |
tree | ddb3dfe037ff9c743a9614ceaed0f6d94a5774ba | |
parent | 8b0f10576113aa181429ce30fd16c8d90a914402 (diff) | |
download | php-git-dc810543cfaedd659a81507887e242a3680d5883.tar.gz |
Fix bug #68260
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | ext/sqlite3/sqlite3.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -2,6 +2,9 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2014, PHP 5.5.22 +- Sqlite3: + . Fix bug #68260 (SQLite3Result::fetchArray declares wrong + required_num_args). (Julien) 22 Jan 2014, PHP 5.5.21 diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c index 21e5634453..6153a35c5e 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -1902,7 +1902,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3result_columntype, 0, 0, 1) ZEND_ARG_INFO(0, column_number) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3result_fetcharray, 0, 0, 1) +ZEND_BEGIN_ARG_INFO_EX(arginfo_sqlite3result_fetcharray, 0, 0, 0) ZEND_ARG_INFO(0, mode) ZEND_END_ARG_INFO() |