Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit e8ff916

Browse files
MikeHolmanchakrabot
authored andcommitted
deps: update ChakraCore to chakra-core/ChakraCore@da37507e78
[1.8>1.9] [MERGE #4650 @MikeHolman] fix issue where memop may scan for missing values even if not in head segment Merge pull request #4650 from MikeHolman:missingmemop This may cause us to incorrectly set `HasNoMissingValues(false);` OS: 15399206 Reviewed-By: chakrabot <[email protected]>
1 parent acc60e6 commit e8ff916

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: deps/chakrashim/core/lib/Runtime/Library/JavascriptArray.inl

+1-1
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ SECOND_PASS:
989989
CopyArray(current->elements + endIndex + 1, endSeg->length,
990990
((Js::SparseArraySegment<T>*)endSeg)->elements, endSeg->length);
991991
LinkSegments((Js::SparseArraySegment<T>*)startPrev, current);
992-
if (HasNoMissingValues())
992+
if (current == head && HasNoMissingValues())
993993
{
994994
if (ScanForMissingValues<T>(endIndex + 1, endIndex + growby))
995995
{

0 commit comments

Comments
 (0)