From 32c07226228e8d00b39662e95a6972a53733411c Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Sat, 11 Apr 2026 09:31:18 -0400 Subject: [PATCH] * src/type1/t1parse.c (T1_Get_Private_Dict): Minor. Fixes #1416. --- src/type1/t1parse.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/type1/t1parse.c b/src/type1/t1parse.c index a9b8d18a6..f5ee6e1bd 100644 --- a/src/type1/t1parse.c +++ b/src/type1/t1parse.c @@ -339,11 +339,8 @@ FT_Bool test_cr; - parser->root.cursor = parser->base_dict; - parser->root.limit = parser->base_dict + parser->base_len; - - cur = parser->root.cursor; - limit = parser->root.limit; + parser->root.cursor = cur; + parser->root.limit = limit; while ( cur < limit ) {