tomoyo: fix sparse warning
Fix sparse warning.
$ make C=2 SUBDIRS=security/tomoyo CF="-D__cold__="
CHECK security/tomoyo/common.c
CHECK security/tomoyo/realpath.c
CHECK security/tomoyo/tomoyo.c
security/tomoyo/tomoyo.c:110:8: warning: symbol 'buf' shadows an earlier one
security/tomoyo/tomoyo.c💯7: originally declared here
Signed-off-by: Kentaro Takeda <takedakn@nttdata.co.jp>
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: Toshiharu Harada <haradats@nttdata.co.jp>
Signed-off-by: James Morris <jmorris@namei.org>
This commit is contained in:
parent
42d5aaa2d8
commit
35d50e60e8
1 changed files with 4 additions and 4 deletions
|
@ -107,13 +107,13 @@ static char *tomoyo_sysctl_path(struct ctl_table *table)
|
||||||
*--end = '\0';
|
*--end = '\0';
|
||||||
buflen--;
|
buflen--;
|
||||||
while (table) {
|
while (table) {
|
||||||
char buf[32];
|
char num[32];
|
||||||
const char *sp = table->procname;
|
const char *sp = table->procname;
|
||||||
|
|
||||||
if (!sp) {
|
if (!sp) {
|
||||||
memset(buf, 0, sizeof(buf));
|
memset(num, 0, sizeof(num));
|
||||||
snprintf(buf, sizeof(buf) - 1, "=%d=", table->ctl_name);
|
snprintf(num, sizeof(num) - 1, "=%d=", table->ctl_name);
|
||||||
sp = buf;
|
sp = num;
|
||||||
}
|
}
|
||||||
if (tomoyo_prepend(&end, &buflen, sp) ||
|
if (tomoyo_prepend(&end, &buflen, sp) ||
|
||||||
tomoyo_prepend(&end, &buflen, "/"))
|
tomoyo_prepend(&end, &buflen, "/"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue