mmc: core: Fix use of uninitialized data in mmc_cmd_app.
authorAndrei Warkentin <andreiw@motorola.com>
Wed, 13 Apr 2011 20:33:12 +0000 (15:33 -0500)
committerChris Ball <cjb@laptop.org>
Wed, 25 May 2011 01:01:38 +0000 (21:01 -0400)
mmc_cmd_app did not zero out mmc_command on stack.

Reported-by: Chuanxiao Dong <chuanxiao.dong@intel.com>
Signed-off-by: Andrei Warkentin <andreiw@motorola.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/core/sd_ops.c

index 76af349c14b41e41c8e6de62878ee364c6a61232..71fdb07fd8dede2c81ad0a3e9f8411ffca82d246 100644 (file)
@@ -29,6 +29,8 @@ static int mmc_app_cmd(struct mmc_host *host, struct mmc_card *card)
        BUG_ON(!host);
        BUG_ON(card && (card->host != host));
 
+       memset(&cmd, 0, sizeof(struct mmc_command));
+
        cmd.opcode = MMC_APP_CMD;
 
        if (card) {
This page took 0.114447 seconds and 5 git commands to generate.