mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
[patch 1/2] kernel/audit.c: warning fix
kernel/audit.c: In function 'audit_log_start': kernel/audit.c:1133: warning: 'serial' may be used uninitialized in this function Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
b593d384ef
commit
ef00be0554
1 changed files with 1 additions and 1 deletions
|
@ -1032,7 +1032,7 @@ struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask,
|
|||
{
|
||||
struct audit_buffer *ab = NULL;
|
||||
struct timespec t;
|
||||
unsigned int serial;
|
||||
unsigned int uninitialized_var(serial);
|
||||
int reserve;
|
||||
unsigned long timeout_start = jiffies;
|
||||
|
||||
|
|
Loading…
Reference in a new issue