[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20061114130109.24180.97758.sendpatchset@localhost>
Date: Tue, 14 Nov 2006 22:01:09 +0900
From: Magnus Damm <magnus@...inux.co.jp>
To: linux-kernel@...r.kernel.org
Cc: Jeremy Fitzhardinge <jeremy@...p.org>,
Vivek Goyal <vgoyal@...ibm.com>, magnus.damm@...il.com,
Horms <horms@...ge.net.au>, Magnus Damm <magnus@...inux.co.jp>,
Dave Anderson <anderson@...hat.com>, ebiederm@...ssion.com,
Jakub Jelinek <jakub@...hat.com>,
David Miller <davem@...emloft.net>
Subject: [PATCH 02/03] Elf: Include terminating zero in n_namesz
elf: Include terminating zero in n_namesz
The ELF32 spec says we should plus we include the zero on other platforms.
Signed-off-by: Magnus Damm <magnus@...inux.co.jp>
---
arch/mips/kernel/irixelf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- 0003/arch/mips/kernel/irixelf.c
+++ work/arch/mips/kernel/irixelf.c 2006-11-14 20:56:54.000000000 +0900
@@ -1009,7 +1009,7 @@ static int notesize(struct memelfnote *e
int sz;
sz = sizeof(struct elf_note);
- sz += roundup(strlen(en->name), 4);
+ sz += roundup(strlen(en->name) + 1, 4);
sz += roundup(en->datasz, 4);
return sz;
@@ -1028,7 +1028,7 @@ static int writenote(struct memelfnote *
{
struct elf_note en;
- en.n_namesz = strlen(men->name);
+ en.n_namesz = strlen(men->name) + 1;
en.n_descsz = men->datasz;
en.n_type = men->type;
-
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