diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-07-17 05:40:59 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-07-17 16:23:19 -0400 |
commit | 8e1c091cccd551557d24ce845715e8ceb6c49d36 (patch) | |
tree | 28f1ea20efe46dd6f62cc0cb77f65be56e7225fc /ipc/sem.c | |
parent | a6343afb6e16b65b9f0b264f94f8207212e7e3ae (diff) |
arch/i386/* fs/* ipc/*: mark variables with uninitialized_var()
Mark variables with uninitialized_var() if such a warning appears,
and analysis proves that the var is initialized properly on all paths
it is used.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'ipc/sem.c')
-rw-r--r-- | ipc/sem.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -856,7 +856,7 @@ static int semctl_down(struct ipc_namespace *ns, int semid, int semnum, | |||
856 | { | 856 | { |
857 | struct sem_array *sma; | 857 | struct sem_array *sma; |
858 | int err; | 858 | int err; |
859 | struct sem_setbuf setbuf; | 859 | struct sem_setbuf uninitialized_var(setbuf); |
860 | struct kern_ipc_perm *ipcp; | 860 | struct kern_ipc_perm *ipcp; |
861 | 861 | ||
862 | if(cmd == IPC_SET) { | 862 | if(cmd == IPC_SET) { |