]> granicus.if.org Git - php/commitdiff
Remove PDORow get_class_entry handler
authorNikita Popov <nikic@php.net>
Thu, 9 Oct 2014 13:23:14 +0000 (15:23 +0200)
committerNikita Popov <nikic@php.net>
Thu, 9 Oct 2014 13:23:14 +0000 (15:23 +0200)
ext/pdo/pdo_stmt.c

index 72c69c27cb3327d30cea25298b608c6278a20a5d..32f06b5dfa728dd52fb73d0ab041433354720687 100644 (file)
@@ -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 */