mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.1' into PHP-8.2
* PHP-8.1: Fix compilation error on old GCC versions
This commit is contained in:
1
NEWS
1
NEWS
@@ -9,6 +9,7 @@ PHP NEWS
|
||||
value(s)). (nielsdos)
|
||||
. Fixed bug GH-11189 (Exceeding memory limit in zend_hash_do_resize leaves
|
||||
the array in an invalid state). (Bob)
|
||||
. Fixed bug GH-11063 (Compilation error on old GCC versions). (ingamedeo)
|
||||
|
||||
- Hash:
|
||||
. Fixed bug GH-11180 (hash_file() appears to be restricted to 3 arguments).
|
||||
|
||||
@@ -240,7 +240,7 @@ ZEND_API const HashTable zend_empty_array = {
|
||||
.gc.u.type_info = IS_ARRAY | (GC_IMMUTABLE << GC_FLAGS_SHIFT),
|
||||
.u.flags = HASH_FLAG_UNINITIALIZED,
|
||||
.nTableMask = HT_MIN_MASK,
|
||||
.arData = (Bucket*)&uninitialized_bucket[2],
|
||||
{.arData = (Bucket*)&uninitialized_bucket[2]},
|
||||
.nNumUsed = 0,
|
||||
.nNumOfElements = 0,
|
||||
.nTableSize = HT_MIN_SIZE,
|
||||
|
||||
Reference in New Issue
Block a user