[<prev] [next>] [day] [month] [year] [list]
Message-ID: <4B2F626E.3090402@gmail.com>
Date: Mon, 21 Dec 2009 19:56:30 +0800
From: Liuwenyi <qingshenlwy@...il.com>
To: akpm@...ux-foundation.org, adilger@....com,
viro@...iv.linux.org.uk, jmorris@...ei.org, joel.becker@...cle.com,
serue@...ibm.com, jack@...e.cz, linux-ext4@...r.kernel.org,
linux-kernel@...r.kernel.org, onlyflyer@...il.com,
strongzgy@...il.com
Subject: [PATCHv2 04/12]posix_acl: Add the check items
move the ACL validation check in to fs/posix_acl.c.
Including nullpointer check and PTR_ERR check.
---
Signed-off-by: Liuwenyi <qingshenlwy@...il.com>
Cc: Andrew Morton <akpm@...ux-foundation.org>
Cc: Andreas Dilger <adilger@....com>
Cc: Al Viro <viro@...iv.linux.org.uk>
Cc: James Morris <jmorris@...ei.org>
Cc: Joel Becker <joel.becker@...cle.com>
Cc: Serge Hallyn <serue@...ibm.com>
Cc: Jan Kara <jack@...e.cz>
Cc: linux-ext4@...r.kernel.org
Cc: linux-kernel@...r.kernel.org
---
diff --git a/fs/ext3/acl.c b/fs/ext3/acl.c
index 82ba341..3758304 100644
--- a/fs/ext3/acl.c
+++ b/fs/ext3/acl.c
@@ -432,13 +432,11 @@ ext3_xattr_set_acl(struct dentry *dentry, const
char *name, const void *value,
if (value) {
acl = posix_acl_from_xattr(value, size);
- if (IS_ERR(acl))
- return PTR_ERR(acl);
- else if (acl) {
- error = posix_acl_valid(acl);
- if (error)
- goto release_and_out;
- }
+
+ error = posix_acl_valid(acl);
+ if (error)
+ goto release_and_out;
+
} else
acl = NULL;
--
Best Regards,
Liuwenyi
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists