diff --git a/Library/Call.php b/Library/Call.php index f28e998da1..68f41b6836 100644 --- a/Library/Call.php +++ b/Library/Call.php @@ -669,13 +669,14 @@ public function addCallStatusFlag(CompilationContext $compilationContext) public function addCallStatusOrJump(CompilationContext $compilationContext) { $compilationContext->headersManager->add('kernel/fcall'); - if (!$compilationContext->insideTryCatch) { - $compilationContext->codePrinter->output('zephir_check_call_status();'); - } else { + if ($compilationContext->insideTryCatch) { $compilationContext->codePrinter->output( - 'zephir_check_call_status_or_jump(try_end_' . $compilationContext->insideTryCatch . ');' + 'zephir_check_call_status_or_jump(try_end_' . $compilationContext->currentTryCatch . ');' ); + return; } + + $compilationContext->codePrinter->output('zephir_check_call_status();'); } /**