summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2023-02-20 22:31:21 -0500
committerAlexei Podtelezhnikov <apodtele@gmail.com>2023-02-20 22:31:21 -0500
commit78464d1b0ce056bb35ff6f987657030a09c3d6ee (patch)
tree8959945271a0591bd8cf4a70f4036332d5056dd2
parentf5f969a8fe230a5355b62ebea45c91acf83e7645 (diff)
downloadfreetype2-78464d1b0ce056bb35ff6f987657030a09c3d6ee.tar.gz
* src/base/ftoutln.c (FT_Outline_Check): Fix C4701 warning.
-rw-r--r--src/base/ftoutln.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c
index 60ee8a6f3..134f39d2b 100644
--- a/src/base/ftoutln.c
+++ b/src/base/ftoutln.c
@@ -379,7 +379,7 @@
end0 = end;
}
- if ( end != n_points - 1 )
+ if ( end0 != n_points - 1 )
goto Bad;
/* XXX: check the tags array */