From 30b2739adf518e07694e66b6d39d4b90576fc7b7 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Fri, 7 May 2021 12:07:30 +0200 Subject: [PATCH] Ensure that composite/non-composite fonts won't get the same `hash` in `PartialEvaluator.preEvaluateFont` To hopefully help prevent any future bugs, make sure that composite/non-composite fonts cannot accidentally get matching `hash`es. Given the differences between those font types, that's very unlikely to be useful or even correct in general. --- src/core/evaluator.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/evaluator.js b/src/core/evaluator.js index 4cea9d446..ee9017558 100644 --- a/src/core/evaluator.js +++ b/src/core/evaluator.js @@ -3622,6 +3622,8 @@ class PartialEvaluator { } if (composite) { + hash.update("compositeFont"); + const compositeWidths = dict.get("W") || baseDict.get("W"); if (Array.isArray(compositeWidths)) { const widthsBuf = [];