From d53c114165b152d58b8b86d3c25a2bd27b006136 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Tue, 2 Aug 2022 12:57:39 +0000 Subject: [PATCH] * src/psaux/psobjs.c (ps_table_release): Remove redundant casting. --- src/psaux/psobjs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/psaux/psobjs.c b/src/psaux/psobjs.c index 703567f7e..bffda99ee 100644 --- a/src/psaux/psobjs.c +++ b/src/psaux/psobjs.c @@ -234,7 +234,7 @@ FT_Memory memory = table->memory; - if ( (FT_ULong)table->init == 0xDEADBEEFUL ) + if ( table->init == 0xDEADBEEFUL ) { FT_FREE( table->block ); FT_FREE( table->elements );