From: Dan Carpenter Date: Tue, 24 Feb 2009 17:14:54 +0000 (-0500) Subject: ext4: Fix NULL dereference in ext4_ext_migrate()'s error handling X-Git-Tag: v2.6.27.20~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e843ff53f46be9aab2db1d784b45bccfc3bd9257;p=karo-tx-linux.git ext4: Fix NULL dereference in ext4_ext_migrate()'s error handling (cherry picked from commit 090542641de833c6f756895fc2f139f046e298f9) This was found through a code checker (http://repo.or.cz/w/smatch.git/). It looks like you might be able to trigger the error by trying to migrate a readonly file system. Signed-off-by: Dan Carpenter Signed-off-by: "Theodore Ts'o" Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ext4/migrate.c b/fs/ext4/migrate.c index f2a9cf498ecd..9aa0fbee8aa8 100644 --- a/fs/ext4/migrate.c +++ b/fs/ext4/migrate.c @@ -480,7 +480,7 @@ int ext4_ext_migrate(struct inode *inode) + 1); if (IS_ERR(handle)) { retval = PTR_ERR(handle); - goto err_out; + return retval; } tmp_inode = ext4_new_inode(handle, inode->i_sb->s_root->d_inode, @@ -488,8 +488,7 @@ int ext4_ext_migrate(struct inode *inode) if (IS_ERR(tmp_inode)) { retval = -ENOMEM; ext4_journal_stop(handle); - tmp_inode = NULL; - goto err_out; + return retval; } i_size_write(tmp_inode, i_size_read(inode)); /* @@ -617,8 +616,7 @@ err_out: ext4_journal_stop(handle); - if (tmp_inode) - iput(tmp_inode); + iput(tmp_inode); return retval; }