diff options
Diffstat (limited to 'kernel/audit.c')
-rw-r--r-- | kernel/audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c index 060b554f481e..187164572bd0 100644 --- a/kernel/audit.c +++ b/kernel/audit.c | |||
@@ -670,7 +670,7 @@ static void audit_log_vformat(struct audit_buffer *ab, const char *fmt, | |||
670 | /* The printk buffer is 1024 bytes long, so if we get | 670 | /* The printk buffer is 1024 bytes long, so if we get |
671 | * here and AUDIT_BUFSIZ is at least 1024, then we can | 671 | * here and AUDIT_BUFSIZ is at least 1024, then we can |
672 | * log everything that printk could have logged. */ | 672 | * log everything that printk could have logged. */ |
673 | avail = audit_expand(ab, 1+len-avail); | 673 | avail = audit_expand(ab, max_t(AUDIT_BUFSIZ, 1+len-avail)); |
674 | if (!avail) | 674 | if (!avail) |
675 | goto out; | 675 | goto out; |
676 | len = vsnprintf(skb->tail, avail, fmt, args2); | 676 | len = vsnprintf(skb->tail, avail, fmt, args2); |