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

Commit 143d2a61 authored by Salah Triki's avatar Salah Triki Committed by Luis de Bethencourt
Browse files

fs: befs: remove useless initialization to zero



node_off is unconditionally set to bt_super.root_node_ptr, so no need to
init it to zero.

Signed-off-by: default avatarSalah Triki <salah.triki@gmail.com>
Acked-by: default avatarLuis de Bethencourt <luisbg@osg.samsung.com>
parent 88ff3444
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -420,7 +420,7 @@ befs_btree_read(struct super_block *sb, const befs_data_stream *ds,
{
	struct befs_btree_node *this_node;
	befs_btree_super bt_super;
	befs_off_t node_off = 0;
	befs_off_t node_off;
	int cur_key;
	fs64 *valarray;
	char *keystart;