diff options
author | Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp> | 2009-02-13 16:00:58 +0900 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2009-02-14 12:33:30 +1100 |
commit | 33043cbb9fd49a957089f5948fe814764d7abbd6 (patch) | |
tree | 66be66415be5a1108788291194cc5b2bc89fb6fe /security | |
parent | 26036651c562609d1f52d181f9d2cccbf89929b1 (diff) | |
download | op-kernel-dev-33043cbb9fd49a957089f5948fe814764d7abbd6.zip op-kernel-dev-33043cbb9fd49a957089f5948fe814764d7abbd6.tar.gz |
TOMOYO: Fix exception policy read failure.
Due to wrong initialization, "cat /sys/kernel/security/tomoyo/exception_policy"
returned nothing.
Signed-off-by: Kentaro Takeda <takedakn@nttdata.co.jp>
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: Toshiharu Harada <haradats@nttdata.co.jp>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/tomoyo/domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/tomoyo/domain.c b/security/tomoyo/domain.c index 92af8f5..093a756 100644 --- a/security/tomoyo/domain.c +++ b/security/tomoyo/domain.c @@ -376,7 +376,7 @@ int tomoyo_write_domain_keeper_policy(char *data, const bool is_not, bool tomoyo_read_domain_keeper_policy(struct tomoyo_io_buffer *head) { struct list_head *pos; - bool done = false; + bool done = true; down_read(&tomoyo_domain_keeper_list_lock); list_for_each_cookie(pos, head->read_var2, |