[Webkit-unassigned] [Bug 183329] [GTK] 2.19 triggers Gigacage crash in Deja Dup
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Mar 5 09:13:36 PST 2018
https://bugs.webkit.org/show_bug.cgi?id=183329
--- Comment #4 from Michael Catanzaro <mcatanzaro at igalia.com> ---
Jeremy, here's some debug you could try adding to Source/bmalloc/bmalloc/VMAllocate.h:
// At the top of the file, before the bmalloc namespace
#include <cstring>
#include <errno.h>
inline void* tryVMAllocate(size_t vmSize)
{
vmValidate(vmSize);
void* result = mmap(0, vmSize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON | BMALLOC_NORESERVE, BMALLOC_VM_TAG, 0);
if (result == MAP_FAILED)
{
WTFLogAlways("%s: mmap failed: %d (%s)", __FUNCTION__, errno, strerror(errno));
return nullptr;
}
return result;
}
That would tell us which of the many possible errors are occurring here.
And if you need an immediate workaround, you can of course build with -DUSE_SYSTEM_MALLOC=ON. That will be bad, so I can't recommend that... but you're already disabling GStreamerGL and web fonts.... :P
--
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/20180305/4b6f5d94/attachment-0001.html>
More information about the webkit-unassigned
mailing list