mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-17 12:34:01 +00:00
[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: David Woodhouse <dwmw2@infradead.org>
This commit is contained in:
parent
ec3b67c11d
commit
8d6ea587d9
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue