From 78464d1b0ce056bb35ff6f987657030a09c3d6ee Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Mon, 20 Feb 2023 22:31:21 -0500 Subject: [PATCH] * src/base/ftoutln.c (FT_Outline_Check): Fix C4701 warning. --- src/base/ftoutln.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */