Skip to content

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 kfarnung committed Jan 25, 2018
1 parent 3acc981 commit 2976c41
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 2976c41

Please sign in to comment.