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

Commit 822d967

Browse files
obastemurchakrabot
authored andcommitted
deps: update ChakraCore to chakra-core/ChakraCore@37993b9415
[MERGE #4595 @obastemur] fix build break r1.9 Merge pull request #4595 from obastemur:fix_19_build Reviewed-By: chakrabot <[email protected]>
1 parent 4cae9e4 commit 822d967

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: deps/chakrashim/core/lib/Runtime/Base/PropertyRecord.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ namespace Js
129129

130130
bool Equals(JavascriptString * str) const
131131
{
132-
const PropertyRecord * propRecord = str->GetPropertyRecord();
132+
const PropertyRecord * propRecord = nullptr;
133+
str->GetPropertyRecord(&propRecord);
133134

134135
if (propRecord == nullptr)
135136
{

0 commit comments

Comments
 (0)