Skip to content

Commit 37993b9

Browse files
committed
[MERGE #4595 @obastemur] fix build break r1.9
Merge pull request #4595 from obastemur:fix_19_build
2 parents 4d96e78 + 3be2bc5 commit 37993b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: 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)