Re: [PATCH] drivers/base/class.c: fix swapped memset() arguments

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Alexey Dobriyan napsal(a):

Signed-off-by: Alexey Dobriyan <[email protected]>
---

drivers/base/class.c |    2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-vanilla/drivers/base/class.c
+++ linux-memset/drivers/base/class.c
@@ -506,7 +506,7 @@ int class_device_add(struct class_device
			kobject_del(&class_dev->kobj);
			goto register_done;
		}
-		memset(attr, sizeof(*attr), 0x00);
+		memset(attr, 0x00, sizeof(*attr));
		attr->attr.name = "dev";
		attr->attr.mode = S_IRUGO;
		attr->attr.owner = parent->owner;
Consider use of kzalloc, some of latest git snapshot contains it yet.
Maybe you want to replace all occurences of memset in this source with that as I took a look.

--
Jiri Slaby         www.fi.muni.cz/~xslaby
~\-/~      [email protected]      ~\-/~
241B347EC88228DE51EE A49C4A73A25004CB2A10

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]
  Powered by Linux