forked from Minki/linux
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:
parent
dbbd2ad89b
commit
9e5f172190
@ -77,6 +77,6 @@ struct yamdrv_ioctl_cfg {
|
||||
|
||||
struct yamdrv_ioctl_mcs {
|
||||
int cmd;
|
||||
int bitrate;
|
||||
unsigned int bitrate;
|
||||
unsigned char bits[YAM_FPGA_SIZE];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user