File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 99 value(s)). (nielsdos)
1010 . Fixed bug GH-11189 (Exceeding memory limit in zend_hash_do_resize leaves
1111 the array in an invalid state). (Bob)
12+ . Fixed bug GH-11063 (Compilation error on old GCC versions). (ingamedeo)
1213
1314- Hash:
1415 . Fixed bug GH-11180 (hash_file() appears to be restricted to 3 arguments).
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ ZEND_API const HashTable zend_empty_array = {
240240 .gc .u .type_info = IS_ARRAY | (GC_IMMUTABLE << GC_FLAGS_SHIFT ),
241241 .u .flags = HASH_FLAG_UNINITIALIZED ,
242242 .nTableMask = HT_MIN_MASK ,
243- .arData = (Bucket * )& uninitialized_bucket [2 ],
243+ { .arData = (Bucket * )& uninitialized_bucket [2 ]} ,
244244 .nNumUsed = 0 ,
245245 .nNumOfElements = 0 ,
246246 .nTableSize = HT_MIN_SIZE ,
You can’t perform that action at this time.
0 commit comments