Skip to content

Commit c25a3a9

Browse files
authoredJan 12, 2025··
Merge pull request #80 from YoshihiroIto/master
Fix NullReferenceException
2 parents 0577dc5 + ce73612 commit c25a3a9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/TextMateSharp/Model/TMModel.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,11 @@ public bool IsLineInvalid(int lineIndex)
430430

431431
public void InvalidateLine(int lineIndex)
432432
{
433-
this._lines.Get(lineIndex).IsInvalid = true;
433+
var line = this._lines.Get(lineIndex);
434+
if (line == null)
435+
return;
436+
437+
line.IsInvalid = true;
434438

435439
lock (_lock)
436440
{

0 commit comments

Comments
 (0)
Please sign in to comment.