Bug 906996 - Remove unlink from B2G content process syscall whitelist. r=kang

This commit is contained in:
Jed Davis 2015-03-11 12:39:00 +01:00
Родитель f45ce06bc8
Коммит 2d14f8d244
1 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -200,7 +200,6 @@ SandboxFilterImplContent::Build() {
/* Must remove all of the following in the future, when no longer used */
/* open() is for some legacy APIs such as font loading. */
/* See bug 906996 for removing unlink(). */
Allow(SYSCALL_LARGEFILE(fstat, fstat64));
Allow(SYSCALL_LARGEFILE(stat, stat64));
Allow(SYSCALL_LARGEFILE(lstat, lstat64));
@ -212,8 +211,6 @@ SandboxFilterImplContent::Build() {
Allow(SYSCALL(readlinkat)); /* Workaround for bug 964455 */
Allow(SYSCALL(prctl));
Allow(SYSCALL(access));
Allow(SYSCALL(unlink));
Allow(SYSCALL(unlinkat));
Allow(SYSCALL(fsync));
Allow(SYSCALL(msync));