projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54dcf0c
)
sparc: use %s for unaligned panic
author
Kees Cook
<keescook@chromium.org>
Mon, 30 Jun 2014 20:37:59 +0000
(13:37 -0700)
committer
David S. Miller
<davem@davemloft.net>
Tue, 22 Jul 2014 04:37:06 +0000
(21:37 -0700)
Since unaligned_panic() takes a literal string, make sure it can never
accidentally be used as a format string.
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/kernel/unaligned_32.c
patch
|
blob
|
history
diff --git
a/arch/sparc/kernel/unaligned_32.c
b/arch/sparc/kernel/unaligned_32.c
index
c5c61b3
..
32b61d1
100644
(file)
--- a/
arch/sparc/kernel/unaligned_32.c
+++ b/
arch/sparc/kernel/unaligned_32.c
@@
-166,7
+166,7
@@
unsigned long safe_compute_effective_address(struct pt_regs *regs,
/* This is just to make gcc think panic does return... */
static void unaligned_panic(char *str)
{
- panic(str);
+ panic(
"%s",
str);
}
/* una_asm.S */