diff options
| author | Wez Furlong <wez@php.net> | 2005-04-22 02:40:48 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2005-04-22 02:40:48 +0000 |
| commit | 7dd430ff2835ff5b0a3d84953c88764ffd8acaa7 (patch) | |
| tree | 1d45372fa12ea05ff6c37a40aaeac3a82db350a2 | |
| parent | ace93a1de9561ae7d29c197a0f3a65c5b114312c (diff) | |
| download | php-git-7dd430ff2835ff5b0a3d84953c88764ffd8acaa7.tar.gz | |
fix bug #32795
| -rwxr-xr-x | ext/pdo/pdo_stmt.c | 4 |
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, |
