selinux: remove an unneeded variable in sel_make_class_dir_entries()
Return the value sel_make_perm_files() directly instead of storing it in another redundant variable. Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn> [PM: subject line tweak] Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
Родитель
568035b01c
Коммит
5698f08169
|
@ -1917,7 +1917,6 @@ static int sel_make_class_dir_entries(struct selinux_policy *newpolicy,
|
||||||
struct selinux_fs_info *fsi = sb->s_fs_info;
|
struct selinux_fs_info *fsi = sb->s_fs_info;
|
||||||
struct dentry *dentry = NULL;
|
struct dentry *dentry = NULL;
|
||||||
struct inode *inode = NULL;
|
struct inode *inode = NULL;
|
||||||
int rc;
|
|
||||||
|
|
||||||
dentry = d_alloc_name(dir, "index");
|
dentry = d_alloc_name(dir, "index");
|
||||||
if (!dentry)
|
if (!dentry)
|
||||||
|
@ -1937,9 +1936,7 @@ static int sel_make_class_dir_entries(struct selinux_policy *newpolicy,
|
||||||
if (IS_ERR(dentry))
|
if (IS_ERR(dentry))
|
||||||
return PTR_ERR(dentry);
|
return PTR_ERR(dentry);
|
||||||
|
|
||||||
rc = sel_make_perm_files(newpolicy, classname, index, dentry);
|
return sel_make_perm_files(newpolicy, classname, index, dentry);
|
||||||
|
|
||||||
return rc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sel_make_classes(struct selinux_policy *newpolicy,
|
static int sel_make_classes(struct selinux_policy *newpolicy,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче