diff options
| author | root <ngkaho1234@gmail.com> | 2015-10-05 22:50:16 +0000 |
|---|---|---|
| committer | root <ngkaho1234@gmail.com> | 2015-10-05 22:50:16 +0000 |
| commit | 6c2c498a33955b14bc082fd896a3caa57b004115 (patch) | |
| tree | a20f43f81b3d0d9cb03c68f334b1b81a0a9d2400 | |
| parent | a1504e63d4fd0852c4203f43a1bcb4fb7d425aa2 (diff) | |
Line 518 of ext4_xattr:
ret = ext4_block_get(xattr_ref->fs->bdev,
&xattr_ref->inode_ref->block,
xattr_block);
Should be &xattr_ref->block.
| -rw-r--r-- | lwext4/ext4_xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lwext4/ext4_xattr.c b/lwext4/ext4_xattr.c index f43d5a4..b50bab1 100644 --- a/lwext4/ext4_xattr.c +++ b/lwext4/ext4_xattr.c @@ -515,7 +515,7 @@ ext4_xattr_try_alloc_block(struct ext4_xattr_ref *xattr_ref) goto Finish; ret = ext4_block_get(xattr_ref->fs->bdev, - &xattr_ref->inode_ref->block, + &xattr_ref->block, xattr_block); if (ret != EOK) { ext4_balloc_free_block(xattr_ref->inode_ref, |
