Commit 8c3f3f1d authored by Brian Norris's avatar Brian Norris

mtd: mtdswap: fix integer overflow

Caught by Coverity.
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent 5e472128
......@@ -1474,7 +1474,7 @@ static void mtdswap_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
}
eblocks = mtd_div_by_eb(use_size, mtd);
use_size = eblocks * mtd->erasesize;
use_size = (uint64_t)eblocks * mtd->erasesize;
bad_blocks = mtdswap_badblocks(mtd, use_size);
eavailable = eblocks - bad_blocks;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment