[Webkit-unassigned] [Bug 175256] REGRESSION: wasm.yaml/wasm/js-api/dont-mmap-zero-byte-memory.js failing on JSC Debug bots

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Aug 6 22:24:54 PDT 2017


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

--- Comment #3 from Keith Miller <keith_miller at apple.com> ---
I think the issue is that the order of this check is wrong: 

if (!Gigacage::isCaged(data) && data && byteLength)

I think it should be:

if (data && !Gigacage::isCaged(data) && byteLength)

since isCaged asserts data isn't null.

-- 
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/20170807/8a74a37f/attachment-0001.html>


More information about the webkit-unassigned mailing list