Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

memstick: mspro_block: add missing curly braces

Using the indenting we can see the curly braces were obviously intended.
This is a static checker fix, but my guess is that we don't read enough
bytes, because we don't calculate "t_len" correctly.

Fixes: f1d82698029b ('memstick: use fully asynchronous request processing')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Alex Dubov <oakad@yahoo.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Dan Carpenter and committed by
Linus Torvalds
13f6b191 c3fe5872

+2 -1
+2 -1
drivers/memstick/core/mspro_block.c
··· 758 758 759 759 if (error || (card->current_mrq.tpc == MSPRO_CMD_STOP)) { 760 760 if (msb->data_dir == READ) { 761 - for (cnt = 0; cnt < msb->current_seg; cnt++) 761 + for (cnt = 0; cnt < msb->current_seg; cnt++) { 762 762 t_len += msb->req_sg[cnt].length 763 763 / msb->page_size; 764 764 ··· 766 766 t_len += msb->current_page - 1; 767 767 768 768 t_len *= msb->page_size; 769 + } 769 770 } 770 771 } else 771 772 t_len = blk_rq_bytes(msb->block_req);