public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Misuse of sizeof
@ 2008-12-13 16:31 Giangiacomo Mariotti
  2008-12-13 16:43 ` Frédéric Weisbecker
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Giangiacomo Mariotti @ 2008-12-13 16:31 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 92 bytes --]

IMO there's a bug in the use of sizeof in /arch/x86/boot/main.c, it's
also a strange style.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-misuse-of-sizeof.patch --]
[-- Type: text/x-patch; name=0001-misuse-of-sizeof.patch, Size: 844 bytes --]

From 473bf306f25b05b1516164cbbf7bd0831133275a Mon Sep 17 00:00:00 2001
From: MisterIO <mrio@debian-hell.inferis.org>
Date: Sat, 13 Dec 2008 17:19:27 +0100
Subject: [PATCH] misuse of sizeof

---
 arch/x86/boot/main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/boot/main.c b/arch/x86/boot/main.c
index 197421d..ecd87cf 100644
--- a/arch/x86/boot/main.c
+++ b/arch/x86/boot/main.c
@@ -34,8 +34,8 @@ static void copy_boot_params(void)
 	const struct old_cmdline * const oldcmd =
 		(const struct old_cmdline *)OLD_CL_ADDRESS;
 
-	BUILD_BUG_ON(sizeof boot_params != 4096);
-	memcpy(&boot_params.hdr, &hdr, sizeof hdr);
+	BUILD_BUG_ON(sizeof(boot_params) != 4096);
+	memcpy(&boot_params.hdr, &hdr, sizeof(hdr));
 
 	if (!boot_params.hdr.cmd_line_ptr &&
 	    oldcmd->cl_magic == OLD_CL_MAGIC) {
-- 
1.6.0.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-12-13 17:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-13 16:31 [PATCH] Misuse of sizeof Giangiacomo Mariotti
2008-12-13 16:43 ` Frédéric Weisbecker
2008-12-13 17:33   ` Giangiacomo Mariotti
2008-12-13 16:44 ` Miguel Ojeda
2008-12-13 16:48 ` Gregory Petrosyan
2008-12-13 16:59 ` Roland Dreier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox