提交 bbe4a7c8 编写于 作者: J John Johansen

apparmor: constify policy name and hname

Signed-off-by: NJohn Johansen <john.johansen@canonical.com>
上级 6e474e30
......@@ -38,7 +38,7 @@
*
* Returns: length of mangled name
*/
static int mangle_name(char *name, char *target)
static int mangle_name(const char *name, char *target)
{
char *t = target;
......
......@@ -123,8 +123,8 @@ static inline bool path_mediated_fs(struct dentry *dentry)
* @profiles: head of the profiles list contained in the object
*/
struct aa_policy {
char *name;
char *hname;
const char *name;
const char *hname;
struct list_head list;
struct list_head profiles;
};
......
......@@ -178,7 +178,7 @@ bool aa_policy_init(struct aa_policy *policy, const char *prefix,
policy->hname = kmalloc(strlen(prefix) + strlen(name) + 3,
GFP_KERNEL);
if (policy->hname)
sprintf(policy->hname, "%s//%s", prefix, name);
sprintf((char *)policy->hname, "%s//%s", prefix, name);
} else
policy->hname = kstrdup(name, GFP_KERNEL);
if (!policy->hname)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册