clear stack after vsindex op

This commit is contained in:
Michiharu Ariza 2018-11-07 09:16:12 -08:00
parent 7fed7d80f7
commit ae8fd0dbfb
2 changed files with 2 additions and 0 deletions

View File

@ -243,6 +243,7 @@ struct CFF2CSOpSet : CSOpSet<BlendArg, OPSET, CFF2CSInterpEnv, PARAM, PATH>
static inline void process_vsindex (CFF2CSInterpEnv &env, PARAM& param)
{
env.process_vsindex ();
env.clear_args ();
}
private:

View File

@ -347,6 +347,7 @@ struct CFF2PrivateDictOpSet : DictOpSet
case OpCode_vsindexdict:
env.process_vsindex ();
dictval.ivs = env.get_ivs ();
env.clear_args ();
break;
case OpCode_blenddict:
break;