We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11bf2cd commit 3b2b16cCopy full SHA for 3b2b16c
dmoj/cptbox/tracer.py
@@ -30,7 +30,8 @@
30
_SYSCALL_INDICIES[PTBOX_ABI_ARM64] = 5
31
32
FREEBSD = sys.platform.startswith('freebsd')
33
-BAD_SECCOMP = sys.platform == 'linux' and tuple(map(int, os.uname().release.partition('-')[0].split('.'))) < (4, 8)
+BAD_SECCOMP = sys.platform == 'linux' and \
34
+ tuple(map(int, os.uname().release.partition('+')[0].partition('-')[0].split('.'))) < (4, 8)
35
36
_address_bits = {
37
PTBOX_ABI_X86: 32,
0 commit comments