[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1361744145-28112-1-git-send-email-s.syam@samsung.com>
Date: Mon, 25 Feb 2013 03:45:45 +0530
From: Syam Sidhardhan <syamsidhardh@...il.com>
To: schwidefsky@...ibm.com, heiko.carstens@...ibm.com,
linux390@...ibm.com, borntraeger@...ibm.com,
jang@...ux.vnet.ibm.com, linux-s390@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, syamsidhardh@...il.com
Subject: [PATCH] s390/dis: Fix invalid array size
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]]);
else
- snprintf(buf, sizeof(buf), "%.5s", insn->name);
+ snprintf(buf, 8, "%.5s", insn->name);
return 0;
}
EXPORT_SYMBOL_GPL(insn_to_mnemonic);
--
1.7.9.5
--
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