From ba43269b8062cdd1ebb3d2c59eea3bb56c3ab657 Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 4 Jun 2019 19:34:17 +0200 Subject: [PATCH] Do not release the bytecode container right after code execution. --- engine/vm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/vm.c b/engine/vm.c index 280967e..acfedae 100644 --- a/engine/vm.c +++ b/engine/vm.c @@ -8099,8 +8099,6 @@ static sxi32 VmExecFinallyBlock( pFrame->iFlags |= VM_FRAME_FINALLY; /* Execute the block */ rc = VmLocalExec(&(*pVm), &pException->sFinally, 0); - /* Release the bytecode container */ - SySetRelease(&pException->sFinally); /* Leave the frame */ VmLeaveFrame(&(*pVm)); }