提交 bcd2ebb7 编写于 作者: M Mauro Carvalho Chehab

[media] drxk: Avoid OOPSes if firmware is corrupted

Don't read paste the buffer, if the firmware is corrupted.
Instead, print an error message.
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 e076c92e
......@@ -1388,6 +1388,12 @@ static int DownloadMicrocode(struct drxk_state *state,
BlockCRC = (pSrc[0] << 8) | pSrc[1];
pSrc += sizeof(u16);
offset += sizeof(u16);
if (offset + BlockSize > Length) {
printk(KERN_ERR "drxk: Firmware is corrupted.\n");
return -EINVAL;
}
status = write_block(state, Address, BlockSize, pSrc);
if (status < 0)
break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册