From 95ac055fd39e293fc19cc00337a6498199573e89 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 23 Sep 2015 00:12:31 +0300 Subject: [PATCH] Cleanup: zend_object_std_dtor() is called through free_obj handler --- ext/intl/resourcebundle/resourcebundle_class.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/intl/resourcebundle/resourcebundle_class.c b/ext/intl/resourcebundle/resourcebundle_class.c index d6b071a2494..fd255d57cd6 100644 --- a/ext/intl/resourcebundle/resourcebundle_class.c +++ b/ext/intl/resourcebundle/resourcebundle_class.c @@ -49,8 +49,6 @@ static void ResourceBundle_object_destroy( zend_object *object ) if (rb->child) { ures_close( rb->child ); } - - //???zend_object_std_dtor( object ); } /* }}} */