diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2012-02-20 17:53:06 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-02-20 17:53:06 -0500 |
commit | a0cc910f15027fbd731e78f3437cc076eebc22e9 (patch) | |
tree | b59e587fa9238e174ef647ca0767b9d3656d8e0c | |
parent | 4fda400360e6c15b9dea4351f2ad85845cdfda7e (diff) |
ext4: using PTR_ERR() on the wrong variable in ext4_ext_migrate()
"inode" is a valid pointer here. "tmp_inode" was intended.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
-rw-r--r-- | fs/ext4/migrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/migrate.c b/fs/ext4/migrate.c index e7d6bb0acfa6..f39f80f8f2c5 100644 --- a/fs/ext4/migrate.c +++ b/fs/ext4/migrate.c | |||
@@ -471,7 +471,7 @@ int ext4_ext_migrate(struct inode *inode) | |||
471 | tmp_inode = ext4_new_inode(handle, inode->i_sb->s_root->d_inode, | 471 | tmp_inode = ext4_new_inode(handle, inode->i_sb->s_root->d_inode, |
472 | S_IFREG, NULL, goal, owner); | 472 | S_IFREG, NULL, goal, owner); |
473 | if (IS_ERR(tmp_inode)) { | 473 | if (IS_ERR(tmp_inode)) { |
474 | retval = PTR_ERR(inode); | 474 | retval = PTR_ERR(tmp_inode); |
475 | ext4_journal_stop(handle); | 475 | ext4_journal_stop(handle); |
476 | return retval; | 476 | return retval; |
477 | } | 477 | } |