commit | fd77a331eb46ad106331d644e53d5f7945031e30 | [log] [tgz] |
---|---|---|
author | Paul Lawrence <paullawrence@google.com> | Wed Feb 08 17:57:41 2017 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Feb 08 17:57:42 2017 +0000 |
tree | 4695b908c82565cf6d78fb083382af5ef8d774f8 | |
parent | da6d683caa7d285d14cdf2f6c176bf39fade080c [diff] | |
parent | 76c20442cfe91d37a1cf917d08ba95837332fb83 [diff] |
Merge "Expand seccomp whitelist"
diff --git a/core/jni/android_os_seccomp.cpp b/core/jni/android_os_seccomp.cpp index 02c0c62..3f021ae 100644 --- a/core/jni/android_os_seccomp.cpp +++ b/core/jni/android_os_seccomp.cpp
@@ -216,6 +216,9 @@ AllowSyscall(f, 8); // __NR_creat AllowSyscall(f, 10); // __NR_unlink + // b/35059702 + AllowSyscall(f, 196); // __NR_lstat64 + Trap(f); return install_filter(f);