| Summary: | [ Windows EWS ] js/function-apply-aliased.html is a flaky crash | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Eric Hutchison <ehutchison> | ||||
| Component: | JavaScriptCore | Assignee: | Nobody <webkit-unassigned> | ||||
| Status: | NEW --- | ||||||
| Severity: | Normal | CC: | bfulgham, ehutchison, mark.lam, pvollan, webkit-bot-watchers-bugzilla, webkit-bug-importer | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Eric Hutchison
2021-10-26 10:40:17 PDT
Updated test expectations at https://trac.webkit.org/changeset/284879/webkit We're crashing here:
void* CompleteSubspace::allocateSlow(VM& vm, size_t size, GCDeferralContext* deferralContext, AllocationFailureMode failureMode)
{
void* result = tryAllocateSlow(vm, size, deferralContext);
if (failureMode == AllocationFailureMode::Assert)
RELEASE_ASSERT(result); // <========= line 116
return result;
}
i.e. we're just running out fo memory / the system is low on memory. This is not a security issue.
|