don't reject empty Dict

pull/1113/head
Michiharu Ariza 6 years ago
parent 43ee0e4d00
commit 7b21319edf
  1. 4
      src/hb-cff-interp-dict-common.hh

@ -262,12 +262,12 @@ struct DictInterpreter : Interpreter<ENV>
inline bool interpret (PARAM& param)
{
param.init ();
do
while (SUPER::env.substr.avail ())
{
OPSET::process_op (SUPER::env.fetch_op (), SUPER::env, param);
if (unlikely (SUPER::env.in_error ()))
return false;
} while (SUPER::env.substr.avail ());
}
return true;
}

Loading…
Cancel
Save