>From 357033c321c3d9a98300b7dbe330fbb5008c092b Mon Sep 17 00:00:00 2001 From: Jan Ceuleers <jan.ceuleers@xxxxxxxxxxxx> Date: Sat, 3 Oct 2009 16:42:15 +0200 Subject: [PATCH] drivers/media/video/saa7164: memset region size error The size of the region to be memset() should be the size of the target rather than the size of the pointer to it. Compile-tested only. Signed-off-by: Jan Ceuleers <jan.ceuleers@xxxxxxxxxxxx> --- drivers/media/video/saa7164/saa7164-cmd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/saa7164/saa7164-cmd.c b/drivers/media/video/saa7164/saa7164-cmd.c index c45966e..9c1d3ac 100644 --- a/drivers/media/video/saa7164/saa7164-cmd.c +++ b/drivers/media/video/saa7164/saa7164-cmd.c @@ -347,7 +347,7 @@ int saa7164_cmd_send(struct saa7164_dev *dev, u8 id, tmComResCmd_t command, /* Prepare some basic command/response structures */ memset(&command_t, 0, sizeof(command_t)); - memset(&response_t, 0, sizeof(&response_t)); + memset(&response_t, 0, sizeof(response_t)); pcommand_t = &command_t; presponse_t = &response_t; command_t.id = id; -- 1.5.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html