Skip to content

Commit

Permalink
[MERGE #4595 @obastemur] fix build break r1.9
Browse files Browse the repository at this point in the history
Merge pull request #4595 from obastemur:fix_19_build
  • Loading branch information
obastemur committed Jan 24, 2018
2 parents 4d96e78 + 3be2bc5 commit 37993b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 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 37993b9

Please sign in to comment.