summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xext/pdo/pdo_stmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c
index 6ea8fb0cb6..5d19468e00 100755
--- a/ext/pdo/pdo_stmt.c
+++ b/ext/pdo/pdo_stmt.c
@@ -1746,7 +1746,7 @@ static int dbstmt_compare(zval *object1, zval *object2 TSRMLS_DC)
return -1;
}
-static zend_object_handlers pdo_dbstmt_object_handlers;
+zend_object_handlers pdo_dbstmt_object_handlers;
void pdo_stmt_init(TSRMLS_D)
{
@@ -2112,7 +2112,7 @@ static int row_compare(zval *object1, zval *object2 TSRMLS_DC)
return -1;
}
-static zend_object_handlers pdo_row_object_handlers = {
+zend_object_handlers pdo_row_object_handlers = {
ZEND_OBJECTS_STORE_HANDLERS,
row_prop_or_dim_read,
row_prop_or_dim_write,