LibJS: Handle OOM errors in String.prototype.replaceAll

This commit is contained in:
Timothy Flynn 2023-01-08 10:06:25 -05:00 committed by Linus Groh
parent 57b918807e
commit 48474b0de6
Notes: sideshowbarker 2024-07-17 05:18:58 +09:00

View File

@ -663,7 +663,7 @@ JS_DEFINE_NATIVE_FUNCTION(StringPrototype::replace_all)
auto position = string_index_of(string.view(), search_string.view(), 0);
while (position.has_value()) {
match_positions.append(*position);
TRY_OR_THROW_OOM(vm, match_positions.try_append(*position));
position = string_index_of(string.view(), search_string.view(), *position + advance_by);
}