Commit 713580f41dcc2054d7fa56265f03eeb9c67e0937

Alexei Podtelezhnikov 2023-02-20T15:58:04

* src/base/ftoutln.c (FT_Outline_Check): Update error code, clean up.

diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c
index e7ae82e..c1f8ed7 100644
--- a/src/base/ftoutln.c
+++ b/src/base/ftoutln.c
@@ -368,7 +368,7 @@
       if ( n_points <= 0 || n_contours <= 0 )
         goto Bad;
 
-      end0 = end = -1;
+      end0 = -1;
       for ( n = 0; n < n_contours; n++ )
       {
         end = outline->contours[n];
@@ -388,7 +388,7 @@
     }
 
   Bad:
-    return FT_THROW( Invalid_Argument );
+    return FT_THROW( Invalid_Outline );
   }