lkml.org 
[lkml]   [2009]   [Oct]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 2/7] ipc: fix trivial warning
    Date
    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@gmail.com>
    ---
    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@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/

    \
     
     \ /
      Last update: 2009-10-19 00:59    [W:4.190 / U:0.040 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site