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

Commit c87fb6fd authored by Chris Mason's avatar Chris Mason
Browse files

Btrfs: avoid uninit variable warnings in ordered-data.c



This one isn't really an uninit variable, but for pretty
obscure reasons.  Let's make it clearly correct.

Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent b31eabd8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -141,7 +141,7 @@ static inline struct rb_node *tree_search(struct btrfs_ordered_inode_tree *tree,
					  u64 file_offset)
{
	struct rb_root *root = &tree->tree;
	struct rb_node *prev;
	struct rb_node *prev = NULL;
	struct rb_node *ret;
	struct btrfs_ordered_extent *entry;