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@37993b9415
Browse files Browse the repository at this point in the history
[MERGE #4595 @obastemur] fix build break r1.9

Merge pull request #4595 from obastemur:fix_19_build

Reviewed-By: chakrabot <chakrabot@users.noreply.github.com>
  • Loading branch information
obastemur authored and chakrabot committed Jan 24, 2018
1 parent 4cae9e4 commit 822d967
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deps/chakrashim/core/lib/Runtime/Base/PropertyRecord.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ namespace Js

bool Equals(JavascriptString * str) const
{
const PropertyRecord * propRecord = str->GetPropertyRecord();
const PropertyRecord * propRecord = nullptr;
str->GetPropertyRecord(&propRecord);

if (propRecord == nullptr)
{
Expand Down

0 comments on commit 822d967

Please sign in to comment.