mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-15 04:07:36 +00:00
LibJS: Handle OOM errors in String.prototype.replaceAll
This commit is contained in:
committed by
Linus Groh
parent
57b918807e
commit
48474b0de6
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user