Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93aaead5 authored by Darrick J. Wong's avatar Darrick J. Wong
Browse files

xfs: fix uninitialized variable in _reflink_convert_cow



Fix an uninitialize variable.

Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarBrian Foster <bfoster@redhat.com>
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
parent 75d65361
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -362,7 +362,7 @@ xfs_reflink_convert_cow(
	xfs_fileoff_t		end_fsb = XFS_B_TO_FSB(mp, offset + count);
	xfs_extnum_t		idx;
	bool			found;
	int			error;
	int			error = 0;

	xfs_ilock(ip, XFS_ILOCK_EXCL);