| Summary: | Segmentation fault in JSC | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | zhunkibatu | ||||
| Component: | JavaScriptCore | Assignee: | Nobody <webkit-unassigned> | ||||
| Status: | NEW --- | ||||||
| Severity: | Normal | CC: | mark.lam, webkit-bug-importer | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | PC | ||||||
| OS: | Linux | ||||||
| Attachments: |
|
||||||
I cannot reproduce this with macOS 13.4 beta. Just getting an exception: Exception: RangeError: Maximum call stack size exceeded. |
Created attachment 465857 [details] the minimal poc The following js code cause a segmentation fault in JSC. ========================================= function foo() { eval(``); foo.bind()(-1,0); } foo(); =========================================