Fix js_string_pad() mem leak

Fixes #274
This commit is contained in:
Dmitry Volyntsev 2024-05-16 19:01:49 -07:00
parent d378a9f3a5
commit cff54408e6

View File

@ -42457,7 +42457,7 @@ static JSValue js_string_pad(JSContext *ctx, JSValueConst this_val,
}
if (n > JS_STRING_LEN_MAX) {
JS_ThrowRangeError(ctx, "invalid string length");
goto fail2;
goto fail3;
}
if (string_buffer_init(ctx, b, n))
goto fail3;