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

[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
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment