Bug 1308568 - Add missing filesystem calls to Allow in case broker is disabled. r=haik

MozReview-Commit-ID: 6AdKbBH0NMh

--HG--
extra : rebase_source : 5b9eb1e2668d6490bf6688d14e61c2c359f46b50
This commit is contained in:
Gian-Carlo Pascutto 2016-10-07 20:58:11 +02:00
Родитель 25c200c77f
Коммит ad0af05265
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -595,6 +595,14 @@ public:
CASES_FOR_stat:
CASES_FOR_lstat:
CASES_FOR_fstatat:
CASES_FOR_chmod:
case __NR_link:
case __NR_mkdir:
case __NR_symlink:
case __NR_rename:
case __NR_rmdir:
case __NR_unlink:
case __NR_readlink:
return Allow();
}
}