From 46c0e00025c79339dd60c46dd32eba8430836f24 Mon Sep 17 00:00:00 2001 From: Nanashi Date: Sat, 14 Jan 2023 18:21:46 +0900 Subject: [PATCH] Fix: Handle Fiddle::DLError --- lib/syntax_tree/yarv/instruction_sequence.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/syntax_tree/yarv/instruction_sequence.rb b/lib/syntax_tree/yarv/instruction_sequence.rb index c284221b..6aa7279e 100644 --- a/lib/syntax_tree/yarv/instruction_sequence.rb +++ b/lib/syntax_tree/yarv/instruction_sequence.rb @@ -70,7 +70,7 @@ def push(instruction) [Fiddle::TYPE_VOIDP] * 3, Fiddle::TYPE_VOIDP ) - rescue NameError + rescue NameError, Fiddle::DLError end # This object is used to track the size of the stack at any given time. It