mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
USB: cxacru: potential underflow in cxacru_cm_get_array()
commit 2a0ebf80aa
upstream.
The value of "offd" comes off the instance->rcv_buf[] and we used it as
the offset into an array. The problem is that we check the upper bound
but not for negative values.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
dc8e739467
commit
fcaa80f4f2
1 changed files with 2 additions and 1 deletions
|
@ -686,7 +686,8 @@ static int cxacru_cm_get_array(struct cxacru_data *instance, enum cxacru_cm_requ
|
|||
{
|
||||
int ret, len;
|
||||
__le32 *buf;
|
||||
int offb, offd;
|
||||
int offb;
|
||||
unsigned int offd;
|
||||
const int stride = CMD_PACKET_SIZE / (4 * 2) - 1;
|
||||
int buflen = ((size - 1) / stride + 1 + size * 2) * 4;
|
||||
|
||||
|
|
Loading…
Reference in a new issue