From 8fd70362fa4c0f411fc67b15b67b69a7c43431e3 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 10 May 2022 15:15:49 -0600 Subject: [PATCH] [cff] Use hb_ubytes_t() instead of Null(hb_ubytes_t) --- src/hb-cff-interp-cs-common.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-cff-interp-cs-common.hh b/src/hb-cff-interp-cs-common.hh index 26232f4e7..a06490b65 100644 --- a/src/hb-cff-interp-cs-common.hh +++ b/src/hb-cff-interp-cs-common.hh @@ -82,7 +82,7 @@ struct biased_subrs_t hb_ubytes_t operator [] (unsigned int index) const { if (unlikely (!subrs || index >= subrs->count)) - return Null (hb_ubytes_t); + return hb_ubytes_t (); else return (*subrs)[index]; }