mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
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>
This commit is contained in:
parent
4f29e10d68
commit
c1a4447f5e
@ -877,7 +877,7 @@ xfs_initialize_perag_data(
|
||||
uint64_t bfreelst = 0;
|
||||
uint64_t btree = 0;
|
||||
uint64_t fdblocks;
|
||||
int error;
|
||||
int error = 0;
|
||||
|
||||
for (index = 0; index < agcount; index++) {
|
||||
/*
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user