diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-02-25 18:35:34 +0100 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-02-25 19:16:41 +0100 |
commit | c1a4447f5e6ae8fb1f34a474f3083fb91cc4da90 (patch) | |
tree | e35f6ab848122c0c0db792bb4595773eb8f30914 /fs/xfs/xfs_reflink.c | |
parent | xfs: rework breaking of shared extents in xfs_file_iomap_begin (diff) | |
download | linux-c1a4447f5e6ae8fb1f34a474f3083fb91cc4da90.tar.xz linux-c1a4447f5e6ae8fb1f34a474f3083fb91cc4da90.zip |
xfs: fix uninitialized error variables
smatch complained about some uninitialized error returns, so fix those.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Allison Henderson <allison.henderson@oracle.com>
Diffstat (limited to '')
-rw-r--r-- | fs/xfs/xfs_reflink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_reflink.c b/fs/xfs/xfs_reflink.c index d42e3ef9050e..680ae7662a78 100644 --- a/fs/xfs/xfs_reflink.c +++ b/fs/xfs/xfs_reflink.c @@ -261,7 +261,7 @@ xfs_reflink_convert_cow_locked( struct xfs_bmbt_irec got; struct xfs_btree_cur *dummy_cur = NULL; int dummy_logflags; - int error; + int error = 0; if (!xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &got)) return 0; |