Skip to content

Commit cf55a7a

Browse files
mikkorapeli-linarostorulf
authored andcommitted
mmc: core: Avoid negative index with array access
Commit 4d0c8d0 ("mmc: core: Use mrq.sbc in close-ended ffu") assigns prev_idata = idatas[i - 1], but doesn't check that the iterator i is greater than zero. Let's fix this by adding a check. Fixes: 4d0c8d0 ("mmc: core: Use mrq.sbc in close-ended ffu") Link: https://lore.kernel.org/all/[email protected]/ Cc: [email protected] Signed-off-by: Mikko Rapeli <[email protected]> Reviewed-by: Avri Altman <[email protected]> Tested-by: Francesco Dolcini <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Ulf Hansson <[email protected]>
1 parent 0cdfe5b commit cf55a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mmc/core/block.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ static int __mmc_blk_ioctl_cmd(struct mmc_card *card, struct mmc_blk_data *md,
488488
if (idata->flags & MMC_BLK_IOC_DROP)
489489
return 0;
490490

491-
if (idata->flags & MMC_BLK_IOC_SBC)
491+
if (idata->flags & MMC_BLK_IOC_SBC && i > 0)
492492
prev_idata = idatas[i - 1];
493493

494494
/*

0 commit comments

Comments
 (0)