]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ocfs2: potential ERR_PTR dereference on error paths
authorDan Carpenter <error27@gmail.com>
Thu, 22 Apr 2010 09:39:29 +0000 (11:39 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 12 May 2010 21:57:03 +0000 (14:57 -0700)
commit 0350cb078f5035716ebdad4ad4709d02fe466a8a upstream.

If "handle" is non null at the end of the function then we assume it's a
valid pointer and pass it to ocfs2_commit_trans();

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/ocfs2/inode.c

index 0297fb8982b861afdae1d974e9fdae96bf0a1f13..4c827d86547440bcbff79b54780cebc1cb1484a2 100644 (file)
@@ -559,6 +559,7 @@ static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
                handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
                if (IS_ERR(handle)) {
                        status = PTR_ERR(handle);
+                       handle = NULL;
                        mlog_errno(status);
                        goto out;
                }