3262b1
diff --git a/security/sandbox/linux/SandboxFilter.cpp b/security/sandbox/linux/SandboxFilter.cpp
3262b1
--- a/security/sandbox/linux/SandboxFilter.cpp
3262b1
+++ b/security/sandbox/linux/SandboxFilter.cpp
3262b1
@@ -858,6 +858,9 @@
3262b1
       case __NR_clone:
3262b1
         return ClonePolicy(InvalidSyscall());
3262b1
 
3262b1
+      case __NR_clone3:
3262b1
+        return Error(ENOSYS);
3262b1
+
3262b1
         // More thread creation.
3262b1
 #ifdef __NR_set_robust_list
3262b1
       case __NR_set_robust_list:
3262b1
@@ -1504,6 +1507,9 @@
3262b1
       case __NR_clone:
3262b1
         return ClonePolicy(Error(EPERM));
3262b1
 
3262b1
+      case __NR_clone3:
3262b1
+        return Error(ENOSYS);
3262b1
+
3262b1
 #  ifdef __NR_fadvise64
3262b1
       case __NR_fadvise64:
3262b1
         return Allow();
3262b1