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

Commit 8d6ea587 authored by David Woodhouse's avatar David Woodhouse
Browse files

[JFFS2] Prevent return of initialised variable in jffs2_init_acl_post()



Spotted by the Coverity checker, and pointed out by Adrian Bunk.

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent ec3b67c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -372,7 +372,7 @@ int jffs2_init_acl_post(struct inode *inode)
			return rc;
	}

	return rc;
	return 0;
}

void jffs2_clear_acl(struct jffs2_inode_info *f)