Skip to content

Commit

Permalink
Fixed crash in CTLineUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjoDeundiak committed Aug 18, 2015
1 parent 5a04d16 commit f1da8fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Source/CTLineUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ BOOL areLinesEqual(CTLineRef line1, CTLineRef line2)
BOOL result = YES;
for (CFIndex j = 0; j < countInRun1; j++)
{
if (glyphs1[j] != glyphs2[j])
if (constGlyphs1[j] != constGlyphs2[j])
{
result = NO;
break;
Expand Down

0 comments on commit f1da8fa

Please sign in to comment.