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

Commit 098db327 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "fuse: fix "uninitialized variable" warning"

parents 41daafd9 875c796f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2330,7 +2330,7 @@ static void fuse_register_polled_file(struct fuse_conn *fc,
{
	spin_lock(&fc->lock);
	if (RB_EMPTY_NODE(&ff->polled_node)) {
		struct rb_node **link, *parent;
		struct rb_node **link, *uninitialized_var(parent);

		link = fuse_find_polled_node(fc, ff->kh, &parent);
		BUG_ON(*link);