1
0
Fork 0

audit_log_untrustedstring() warning fix

kernel/audit.c: In function `audit_log_untrustedstring':
kernel/audit.c:736: warning: comparison is always false due to limited range of data type

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
hifive-unleashed-5.1
Andrew Morton 2005-04-29 15:59:11 +01:00 committed by
parent 83c7d09173
commit 81b7854d52
1 changed files with 1 additions and 1 deletions

View File

@ -730,7 +730,7 @@ void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf, size_t len
void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
{
const char *p = string;
const unsigned char *p = string;
while (*p) {
if (*p == '"' || *p == ' ' || *p < 0x20 || *p > 0x7f) {