Skip to content

Commit

Permalink
mfd: Fix off-by-one value range checking for tps65912_i2c_write
Browse files Browse the repository at this point in the history
If bytes == (TPS6591X_MAX_REGISTER + 1), we have a buffer overflow when
doing memcpy(&msg[1], src, bytes).

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Axel Lin authored and Samuel Ortiz committed Jul 31, 2011
1 parent a5e0678 commit 63c8a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mfd/tps65912-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static int tps65912_i2c_write(struct tps65912 *tps65912, u8 reg,
u8 msg[TPS6591X_MAX_REGISTER + 1];
int ret;

if (bytes > (TPS6591X_MAX_REGISTER + 1))
if (bytes > TPS6591X_MAX_REGISTER)
return -EINVAL;

msg[0] = reg;
Expand Down

0 comments on commit 63c8a58

Please sign in to comment.