[PATCH 2/7] ipc: fix trivial warning

From: Felipe Contreras
Date: Sun Oct 18 2009 - 18:56:18 EST


Commit a0d092f introduced the following warning:
ipc/msg.c: In function âmsgctl_downâ:
ipc/msg.c:415: warning: âmsqid64â may be used uninitialized in this function

Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx>
---
ipc/msg.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ipc/msg.c b/ipc/msg.c
index 2ceab7f..085bd58 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -412,7 +412,7 @@ static int msgctl_down(struct ipc_namespace *ns, int msqid, int cmd,
struct msqid_ds __user *buf, int version)
{
struct kern_ipc_perm *ipcp;
- struct msqid64_ds msqid64;
+ struct msqid64_ds uninitialized_var(msqid64);
struct msg_queue *msq;
int err;

--
1.6.5.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/