1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00
aports/community/firefox/sandbox-sched_setscheduler.patch
psykose 27dd3d03e1 community/firefox: upgrade to 97.0
remove unneeded --with-clang-path
remove unneeded mozwayland stub patch
update bfd linker argument
disable webrtc on armv7/ppc64le
add --disable-elf-hack for aarch64
2022-02-13 20:39:34 +00:00

16 lines
609 B
Diff

upstream bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1657849
--- a/security/sandbox/linux/SandboxFilter.cpp
+++ b/security/sandbox/linux/SandboxFilter.cpp
@@ -1694,10 +1694,10 @@
return Allow();
case __NR_sched_get_priority_min:
case __NR_sched_get_priority_max:
+ case __NR_sched_setscheduler:
return Allow();
case __NR_sched_getparam:
- case __NR_sched_getscheduler:
- case __NR_sched_setscheduler: {
+ case __NR_sched_getscheduler: {
Arg<pid_t> pid(0);
return If(pid == 0, Allow()).Else(Trap(SchedTrap, nullptr));
}