projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61fd563
)
iio: accel: sca3000: memory corruption in sca3000_read_first_n_hw_rb()
author
Dan Carpenter
<dan.carpenter@oracle.com>
Sat, 8 Aug 2015 19:16:42 +0000
(22:16 +0300)
committer
Jonathan Cameron
<jic23@kernel.org>
Sat, 3 Oct 2015 09:28:24 +0000
(10:28 +0100)
"num_read" is in byte units but we are write u16s so we end up write
twice as much as intended.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/accel/sca3000_ring.c
patch
|
blob
|
history
diff --git
a/drivers/staging/iio/accel/sca3000_ring.c
b/drivers/staging/iio/accel/sca3000_ring.c
index 23685e74917e2a5c3f3ab6dc6542f48d5ecbb2a9..bd2c69f85949ba6ce40b80c588a2e6a4036964a2 100644
(file)
--- a/
drivers/staging/iio/accel/sca3000_ring.c
+++ b/
drivers/staging/iio/accel/sca3000_ring.c
@@
-116,7
+116,7
@@
static int sca3000_read_first_n_hw_rb(struct iio_buffer *r,
if (ret)
goto error_ret;
- for (i = 0; i < num_read; i++)
+ for (i = 0; i < num_read
/ sizeof(u16)
; i++)
*(((u16 *)rx) + i) = be16_to_cpup((__be16 *)rx + i);
if (copy_to_user(buf, rx, num_read))