Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280609
b: refs/heads/master
c: a0e86bd
h: refs/heads/master
i:
  280607: 1d5f23a
v: v3
  • Loading branch information
Jesper Juhl authored and Linus Torvalds committed Jan 8, 2012
1 parent d27d754 commit bb4e2b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7dd72f5189b257f927cc3b35d98643a5c392f5c3
refs/heads/master: a0e86bd4252519321b0d102dc4ed90557aa7bee9
5 changes: 3 additions & 2 deletions trunk/kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1260,12 +1260,13 @@ static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
avail = audit_expand(ab,
max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
if (!avail)
goto out;
goto out_va_end;
len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2);
}
va_end(args2);
if (len > 0)
skb_put(skb, len);
out_va_end:
va_end(args2);
out:
return;
}
Expand Down

0 comments on commit bb4e2b2

Please sign in to comment.