mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 15:42:46 +00:00
audit: remove stray newline from audit_log_execve_info() audit_panic() call
There's an unnecessary use of a \n in audit_panic. Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
This commit is contained in:
parent
f12835276c
commit
b7550787fe
1 changed files with 1 additions and 1 deletions
|
@ -1173,7 +1173,7 @@ static void audit_log_execve_info(struct audit_context *context,
|
||||||
*/
|
*/
|
||||||
buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
|
buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
|
||||||
if (!buf) {
|
if (!buf) {
|
||||||
audit_panic("out of memory for argv string\n");
|
audit_panic("out of memory for argv string");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue