From 1680885aa57f192a4ddad6ddd70521f4fe013db0 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Wed, 9 Feb 2022 16:41:07 +0000 Subject: [PATCH] [pshinter] Clear reused mask. In PS hinter, memory allocations persist until the module is done. Therefore, we have to clear reused masks. * src/pshinter/pshrec.c (ps_mask_table_alloc): Clear reused mask. --- src/pshinter/pshrec.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pshinter/pshrec.c b/src/pshinter/pshrec.c index e91f5d5ee..2a5cffbad 100644 --- a/src/pshinter/pshrec.c +++ b/src/pshinter/pshrec.c @@ -249,6 +249,10 @@ mask = table->masks + count - 1; mask->num_bits = 0; mask->end_point = 0; + /* reused mask must be cleared */ + if ( mask->max_bits ) + FT_MEM_ZERO( mask->bytes, mask->max_bits >> 3 ); + table->num_masks = count; Exit: