From: Nikita Popov Date: Thu, 9 Oct 2014 13:23:14 +0000 (+0200) Subject: Remove PDORow get_class_entry handler X-Git-Tag: POST_NATIVE_TLS_MERGE^2~76^2~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b09acffc04997876483436bdceeac54613358084;p=php Remove PDORow get_class_entry handler --- diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c index 72c69c27cb..32f06b5dfa 100644 --- a/ext/pdo/pdo_stmt.c +++ b/ext/pdo/pdo_stmt.c @@ -2636,11 +2636,6 @@ static union _zend_function *row_get_ctor(zend_object *object TSRMLS_DC) return (union _zend_function*)&ctor; } -static zend_class_entry *row_get_ce(const zend_object *object TSRMLS_DC) -{ - return pdo_row_ce; -} - static zend_string *row_get_classname(const zend_object *object, int parent TSRMLS_DC) { if (parent) { @@ -2675,7 +2670,6 @@ zend_object_handlers pdo_row_object_handlers = { row_method_get, row_call_method, row_get_ctor, - row_get_ce, row_get_classname, row_compare, NULL, /* cast */