yam: integer underflow in yam_ioctl()
We cap bitrate at YAM_MAXBITRATE in yam_ioctl(), but it could also be negative. I don't know the impact of using a negative bitrate but let's prevent it. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
dbbd2ad89b
commit
9e5f172190
@@ -77,6 +77,6 @@ struct yamdrv_ioctl_cfg {
|
|||||||
|
|
||||||
struct yamdrv_ioctl_mcs {
|
struct yamdrv_ioctl_mcs {
|
||||||
int cmd;
|
int cmd;
|
||||||
int bitrate;
|
unsigned int bitrate;
|
||||||
unsigned char bits[YAM_FPGA_SIZE];
|
unsigned char bits[YAM_FPGA_SIZE];
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user