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 9
9
value(s)). (nielsdos)
10
10
. Fixed bug GH-11189 (Exceeding memory limit in zend_hash_do_resize leaves
11
11
the array in an invalid state). (Bob)
12
+ . Fixed bug GH-11063 (Compilation error on old GCC versions). (ingamedeo)
12
13
13
14
- Hash:
14
15
. 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 = {
240
240
.gc .u .type_info = IS_ARRAY | (GC_IMMUTABLE << GC_FLAGS_SHIFT ),
241
241
.u .flags = HASH_FLAG_UNINITIALIZED ,
242
242
.nTableMask = HT_MIN_MASK ,
243
- .arData = (Bucket * )& uninitialized_bucket [2 ],
243
+ { .arData = (Bucket * )& uninitialized_bucket [2 ]} ,
244
244
.nNumUsed = 0 ,
245
245
.nNumOfElements = 0 ,
246
246
.nTableSize = HT_MIN_SIZE ,
You can’t perform that action at this time.
0 commit comments