From a037f108d9e64b81606cadaf9a1b34e4bea67d62 Mon Sep 17 00:00:00 2001 From: Dmitry Volyntsev Date: Fri, 16 Sep 2022 17:07:04 -0700 Subject: [PATCH] Fixed typo introduced in 82f41f43abd4. --- src/njs_vmcode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/njs_vmcode.c b/src/njs_vmcode.c index bcef3097..643d1ca1 100644 --- a/src/njs_vmcode.c +++ b/src/njs_vmcode.c @@ -883,6 +883,7 @@ next: case NJS_VMCODE_ARGUMENTS: ret = njs_vmcode_arguments(vm, pc); if (njs_slow_path(ret == NJS_ERROR)) { + goto error; } break; -- 2.47.3