* PHP-7.3:
Fix #79364: When copy empty array, next key is unspecified
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? ????, PHP 7.3.17
+
+?? ??? ????, PHP 7.4.5
+ - Core:
+ . Fixed bug #79364 (When copy empty array, next key is unspecified). (cmb)
+
+- SOAP:
+ . Fixed bug #79357 (SOAP request segfaults when any request parameter is
+ missing). (Nikita)
+
- Spl:
. Fixed bug #75673 (SplStack::unserialize() behavior). (cmb)
target->nTableMask = HT_MIN_MASK;
target->nNumUsed = 0;
target->nNumOfElements = 0;
- target->nNextFreeElement = 0;
+ target->nNextFreeElement = source->nNextFreeElement;
target->nInternalPointer = 0;
+ target->nTableSize = HT_MIN_SIZE;
HT_SET_DATA_ADDR(target, &uninitialized_bucket);
} else if (GC_FLAGS(source) & IS_ARRAY_IMMUTABLE) {
HT_FLAGS(target) = HT_FLAGS(source) & HASH_FLAG_MASK;