Skip to content

Commit

Permalink
ted: Fix double free
Browse files Browse the repository at this point in the history
  • Loading branch information
ry755 committed Sep 4, 2024
1 parent 4f2ce44 commit ce1ce9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/ted/TEd.okm
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ MODULE TEd;
VAR rowAt: POINTER TO Row;
rowAtPlus1: POINTER TO Row;
BEGIN
IF (at & 080000000H) OR (at >| numberOfRows) THEN
IF (at & 080000000H) OR (at >|= numberOfRows) THEN
RETURN();
END;

Expand Down

0 comments on commit ce1ce9f

Please sign in to comment.