[Webkit-unassigned] [Bug 222452] JSC Crash in makeString()

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Feb 26 09:43:03 PST 2021


https://bugs.webkit.org/show_bug.cgi?id=222452

Alexey Proskuryakov <ap at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ap at webkit.org,
                   |                            |darin at apple.com,
                   |                            |fpizlo at apple.com,
                   |                            |mark.lam at apple.com,
                   |                            |sam at webkit.org
          Component|JavaScriptCore              |Web Template Framework

--- Comment #1 from Alexey Proskuryakov <ap at webkit.org> ---
I don't think that we would call it entirely correct, but it is a long standing intentional behavior.


template<typename... StringTypes>
String makeString(StringTypes... strings)
{
    String result = tryMakeString(strings...);
    if (!result)
        CRASH();
    return result;
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210226/cd542176/attachment.htm>


More information about the webkit-unassigned mailing list