diff options
author | Chris Mason <chris.mason@fusionio.com> | 2012-07-25 19:21:10 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2012-07-25 19:21:10 -0400 |
commit | b24baf6917a376420d535548e1f88744028bcf24 (patch) | |
tree | 71bbf14cba76764be732aa919e203db9131a1659 /fs/btrfs | |
parent | 113c1cb530e10bcada93d88ffaa6b521aae2d251 (diff) | |
download | talos-op-linux-b24baf6917a376420d535548e1f88744028bcf24.tar.gz talos-op-linux-b24baf6917a376420d535548e1f88744028bcf24.zip |
Btrfs: uninit variable fixes in send/receive
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/send.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index 5394cb75012a..bf232c88a0bf 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -2676,7 +2676,7 @@ static int process_recorded_refs(struct send_ctx *sctx) struct ulist_iterator uit; struct ulist_node *un; struct fs_path *valid_path = NULL; - u64 ow_inode; + u64 ow_inode = 0; u64 ow_gen; int did_overwrite = 0; int is_orphan = 0; @@ -3553,7 +3553,7 @@ static int send_write(struct send_ctx *sctx, u64 offset, u32 len) int ret = 0; struct fs_path *p; loff_t pos = offset; - int readed; + int readed = 0; mm_segment_t old_fs; p = fs_path_alloc(sctx); |