OSDN Git Service

mmc: bcm2835: Fix possible NULL ptr dereference in bcm2835_request
authorStefan Wahren <stefan.wahren@i2se.com>
Sat, 25 Mar 2017 13:17:00 +0000 (13:17 +0000)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 24 Apr 2017 19:41:53 +0000 (21:41 +0200)
This fixes a NULL pointer dereference in case of a MMC request with a
set block count command and no data.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/bcm2835.c

index 7d1b0db..1f343a4 100644 (file)
@@ -1200,7 +1200,8 @@ static void bcm2835_request(struct mmc_host *mmc, struct mmc_request *mrq)
                return;
        }
 
-       host->use_sbc = !!mrq->sbc && (host->mrq->data->flags & MMC_DATA_READ);
+       host->use_sbc = !!mrq->sbc && host->mrq->data &&
+                       (host->mrq->data->flags & MMC_DATA_READ);
        if (host->use_sbc) {
                if (bcm2835_send_command(host, mrq->sbc)) {
                        if (!host->use_busy)