https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243320
Bug ID: 243320
Summary: www/firefox: 72.0.1_1,1 crash on start
Product: Ports & Packages
Version: Latest
Hardware: Any
OS: Any
Status: New
Severity: Affects Only Me
Priority: ---
Component: Individual Port(s)
Assignee: [email protected]
Reporter: [email protected]
Assignee: [email protected]
Flags: maintainer-feedback?([email protected])
[14897, Main Thread] WARNING: failed to freeze shm: Function not implemented:
file
/tmp/ports/usr/ports/www/firefox/work/firefox-72.0.1/ipc/chromium/src/base/shared_memory_posix.cc,
line 289
Segmentation fault (core dumped)
=============================================================================
#elif defined(__FreeBSD__)
cap_rights_t rights;
cap_rights_init(&rights, CAP_MMAP_R);
if (cap_rights_limit(mapped_file_, &rights) != 0) {
CHROMIUM_LOG(WARNING) << "failed to freeze shm: " << strerror(errno);
//return false; // - My temp FIX - works.
}
=============================================================================
Better to check ENOSYS != errno:
if (cap_rights_limit(mapped_file_, &rights) != 0 && ENOSYS != errno) {
and only in this case fail.
--
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to "[email protected]"