public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] printk: Fix bounds checking for log_prefix.
@ 2011-08-15 21:15 William Douglas
  2011-08-15 21:54 ` [PATCHv2] printk: Remove " William Douglas
  0 siblings, 1 reply; 2+ messages in thread
From: William Douglas @ 2011-08-15 21:15 UTC (permalink / raw)
  To: linux-kernel

Currently log_prefix is testing that the first character of the
log level and facility is less than '0' and greater than '9' (which
is always false).  It should be testing to see if the character
less than '0' or greater than '9' instead.  This patch makes that
change.

The code being changed worked because strtoul bombs out (endp isn't
updated) and 0 is returned anyway.
Signed-off-by: William Douglas <william.douglas@intel.com>
---
 kernel/printk.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/printk.c b/kernel/printk.c
index 37dff34..42080686 100644
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -590,7 +590,7 @@ static size_t log_prefix(const char *p, unsigned int *level, char *special)
 		/* multi digit including the level and facility number */
 		char *endp = NULL;
 
-		if (p[1] < '0' && p[1] > '9')
+		if (p[1] < '0' || p[1] > '9')
 			return 0;
 
 		lev = (simple_strtoul(&p[1], &endp, 10) & 7);
-- 
1.7.6

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-08-15 21:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-15 21:15 [PATCH] printk: Fix bounds checking for log_prefix William Douglas
2011-08-15 21:54 ` [PATCHv2] printk: Remove " William Douglas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox