On Thu, Apr 26, 2012 at 11:12:58PM +0200, Emil Goode wrote: > The error variable should be assigned the value of -ENOMEM > after the NULL check and not before. > > Signed-off-by: Emil Goode <emilgoode@xxxxxxxxx> > --- > fs/gfs2/acl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/gfs2/acl.c b/fs/gfs2/acl.c > index 230eb0f..90f6328 100644 > --- a/fs/gfs2/acl.c > +++ b/fs/gfs2/acl.c > @@ -174,8 +174,8 @@ int gfs2_acl_chmod(struct gfs2_inode *ip, struct iattr *attr) > > len = posix_acl_to_xattr(acl, NULL, 0); > data = kmalloc(len, GFP_NOFS); > - error = -ENOMEM; > if (data == NULL) > + error = -ENOMEM; > goto out; > posix_acl_to_xattr(acl, data, len); > error = gfs2_xattr_acl_chmod(ip, attr, data); You missed the brackets on the if, introducing a bug that will cause it to now always fail. As 'error' gets overwritten in the successful case, there is no reason to change this afaics. Dave -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html