summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2012-01-31 07:17:05 +0000
committerPierre Joye <pajoye@php.net>2012-01-31 07:17:05 +0000
commit0c87d70b1a2660cf3340f4ef93ac858de47b6a25 (patch)
tree2f09948185c450d836fc464799f657f9a642aaff
parentd056f9ccb2d878028248f6aad4566db40526faf9 (diff)
downloadphp-git-0c87d70b1a2660cf3340f4ef93ac858de47b6a25.tar.gz
- fix #55226, WS
-rw-r--r--ext/pdo_sqlite/sqlite_driver.c3
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)