diff options
author | akpm@osdl.org <akpm@osdl.org> | 2005-04-16 18:24:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:24:00 -0400 |
commit | e493073d8d053429fbb42331b57a95dd0d61cadb (patch) | |
tree | c4d697372f6c2f2e2f2548f75c1dbb5b821ab805 /fs/ext3 | |
parent | 81ddef77bb774e771db8588b937665cd38f40cee (diff) |
[PATCH] Fix acl Oops
)
From: Andreas Gruenbacher <agruen@suse.de>
ext[23]_get_acl will return an error when reading the attribute fails or
out-of-memory occurs. Catch this case.
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext3')
-rw-r--r-- | fs/ext3/acl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext3/acl.c b/fs/ext3/acl.c index 328592c3a956..638c13a26c03 100644 --- a/fs/ext3/acl.c +++ b/fs/ext3/acl.c | |||
@@ -286,6 +286,8 @@ ext3_check_acl(struct inode *inode, int mask) | |||
286 | { | 286 | { |
287 | struct posix_acl *acl = ext3_get_acl(inode, ACL_TYPE_ACCESS); | 287 | struct posix_acl *acl = ext3_get_acl(inode, ACL_TYPE_ACCESS); |
288 | 288 | ||
289 | if (IS_ERR(acl)) | ||
290 | return PTR_ERR(acl); | ||
289 | if (acl) { | 291 | if (acl) { |
290 | int error = posix_acl_permission(inode, acl, mask); | 292 | int error = posix_acl_permission(inode, acl, mask); |
291 | posix_acl_release(acl); | 293 | posix_acl_release(acl); |