1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00

Merge branch 'PHP-5.4'

* PHP-5.4:
  - Fixed bug #62564 (Extending MessageFormatter and adding property causes crash)
This commit is contained in:
Felipe Pena
2012-07-14 11:37:20 -03:00

View File

@@ -60,6 +60,7 @@ zend_object_value MessageFormatter_object_create(zend_class_entry *ce TSRMLS_DC)
intern = ecalloc( 1, sizeof(MessageFormatter_object) );
msgformat_data_init( &intern->mf_data TSRMLS_CC );
zend_object_std_init( &intern->zo, ce TSRMLS_CC );
object_properties_init(&intern->zo, ce);
retval.handle = zend_objects_store_put(
intern,