From 713580f41dcc2054d7fa56265f03eeb9c67e0937 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Mon, 20 Feb 2023 15:58:04 +0000 Subject: * src/base/ftoutln.c (FT_Outline_Check): Update error code, clean up. --- src/base/ftoutln.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c index e7ae82e21..c1f8ed7e4 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 ); } -- cgit v1.2.1