|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2012-07-14 15:25 UTC] felipe@php.net
  [2012-07-14 15:27 UTC] felipe@php.net
  [2012-07-14 15:27 UTC] felipe@php.net
 
-Status:      Open
+Status:      Closed
-Assigned To:
+Assigned To: felipe
  [2014-10-07 23:23 UTC] stas@php.net
  [2014-10-07 23:34 UTC] stas@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 00:00:01 2025 UTC | 
Description: ------------ I've checked using my fuzzer some crash due non-initialized property_table, see below. These issues are related to the missing object_properties_init() call. Test script: --------------- Using a basic template code: <?php class foo extends %{classname} { public $foo = 'test'; public function __construct() { } } $x = new foo; var_dump($x); I found issues with: - Collator - NumberFormatter - IntlDateFormatter - ResourceBundle - Spoofchecker - __PHP_Incomplete_Class Expected result: ---------------- No crashes. Actual result: -------------- Crashes