[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20130225065257.GA4040@osiris>
Date: Mon, 25 Feb 2013 07:52:57 +0100
From: Heiko Carstens <heiko.carstens@...ibm.com>
To: Syam Sidhardhan <syamsidhardh@...il.com>
Cc: schwidefsky@...ibm.com, linux390@...ibm.com,
borntraeger@...ibm.com, jang@...ux.vnet.ibm.com,
linux-s390@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] s390/dis: Fix invalid array size
On Mon, Feb 25, 2013 at 03:45:45AM +0530, Syam Sidhardhan wrote:
> We are using sizeof operator for an array given as function argument,
> which is incorrect.
>
> Signed-off-by: Syam Sidhardhan <s.syam@...sung.com>
> ---
> arch/s390/kernel/dis.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/s390/kernel/dis.c b/arch/s390/kernel/dis.c
> index c50665f..3ad5e95 100644
> --- a/arch/s390/kernel/dis.c
> +++ b/arch/s390/kernel/dis.c
> @@ -1711,10 +1711,10 @@ int insn_to_mnemonic(unsigned char *instruction, char buf[8])
> if (!insn)
> return -ENOENT;
> if (insn->name[0] == '\0')
> - snprintf(buf, sizeof(buf), "%s",
> + snprintf(buf, 8, "%s",
> long_insn_name[(int) insn->name[1]]);
Thanks, applied.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists