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

Commit

Permalink
deps: update ChakraCore to chakra-core/ChakraCore@da37507e78
Browse files Browse the repository at this point in the history
[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 <chakrabot@users.noreply.github.com>
  • Loading branch information
MikeHolman authored and chakrabot committed Feb 10, 2018
1 parent acc60e6 commit e8ff916
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ SECOND_PASS:
CopyArray(current->elements + endIndex + 1, endSeg->length,
((Js::SparseArraySegment<T>*)endSeg)->elements, endSeg->length);
LinkSegments((Js::SparseArraySegment<T>*)startPrev, current);
if (HasNoMissingValues())
if (current == head && HasNoMissingValues())
{
if (ScanForMissingValues<T>(endIndex + 1, endIndex + growby))
{
Expand Down

0 comments on commit e8ff916

Please sign in to comment.