Commit 78464d1b0ce056bb35ff6f987657030a09c3d6ee

Alexei Podtelezhnikov 2023-02-20T22:31:21

* src/base/ftoutln.c (FT_Outline_Check): Fix C4701 warning.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c
index 60ee8a6..134f39d 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 */