diff options
author | Pierre Joye <pajoye@php.net> | 2012-01-31 07:17:05 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2012-01-31 07:17:05 +0000 |
commit | 0c87d70b1a2660cf3340f4ef93ac858de47b6a25 (patch) | |
tree | 2f09948185c450d836fc464799f657f9a642aaff /ext/pdo_sqlite | |
parent | d056f9ccb2d878028248f6aad4566db40526faf9 (diff) | |
download | php-git-0c87d70b1a2660cf3340f4ef93ac858de47b6a25.tar.gz |
- fix #55226, WS
Diffstat (limited to 'ext/pdo_sqlite')
-rw-r--r-- | ext/pdo_sqlite/sqlite_driver.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/pdo_sqlite/sqlite_driver.c b/ext/pdo_sqlite/sqlite_driver.c index f3e6c01db9..f81cf9b1ed 100644 --- a/ext/pdo_sqlite/sqlite_driver.c +++ b/ext/pdo_sqlite/sqlite_driver.c @@ -680,7 +680,7 @@ static PHP_METHOD(SQLite, sqliteCreateCollation) &collation_name, &collation_name_len, &callback)) { RETURN_FALSE; } - + dbh = zend_object_store_get_object(getThis() TSRMLS_CC); PDO_CONSTRUCT_CHECK; @@ -713,7 +713,6 @@ static PHP_METHOD(SQLite, sqliteCreateCollation) } /* }}} */ - static const zend_function_entry dbh_methods[] = { PHP_ME(SQLite, sqliteCreateFunction, NULL, ZEND_ACC_PUBLIC) PHP_ME(SQLite, sqliteCreateAggregate, NULL, ZEND_ACC_PUBLIC) |