1
0
Fork 0

Merge branch 'master' of git://git.infradead.org/users/pcmoore/selinux into next

hifive-unleashed-5.1
James Morris 2014-01-08 17:22:32 +11:00
commit 923b49ff69
1 changed files with 13 additions and 1 deletions

View File

@ -1995,7 +1995,19 @@ static int filename_trans_read(struct policydb *p, void *fp)
if (rc)
goto out;
hashtab_insert(p->filename_trans, ft, otype);
rc = hashtab_insert(p->filename_trans, ft, otype);
if (rc) {
/*
* Do not return -EEXIST to the caller, or the system
* will not boot.
*/
if (rc != -EEXIST)
goto out;
/* But free memory to avoid memory leak. */
kfree(ft);
kfree(name);
kfree(otype);
}
}
hash_eval(p->filename_trans, "filenametr");
return 0;