mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
staging/mei: remove BUG_ON for testing of the response buffer size overflow
We can remove BUG_ON in mei_irq_thread_read_client_message() as the testing for response buffer size overflow has already graceful handling in place. Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
ef497f46c3
commit
2bcfaa1fa2
@ -210,9 +210,6 @@ static int mei_irq_thread_read_client_message(struct mei_io_list *complete_list,
|
|||||||
buffer = (unsigned char *)
|
buffer = (unsigned char *)
|
||||||
(cb_pos->response_buffer.data +
|
(cb_pos->response_buffer.data +
|
||||||
cb_pos->information);
|
cb_pos->information);
|
||||||
BUG_ON(cb_pos->response_buffer.size <
|
|
||||||
mei_hdr->length +
|
|
||||||
cb_pos->information);
|
|
||||||
|
|
||||||
if (cb_pos->response_buffer.size <
|
if (cb_pos->response_buffer.size <
|
||||||
mei_hdr->length + cb_pos->information) {
|
mei_hdr->length + cb_pos->information) {
|
||||||
|
Loading…
Reference in New Issue
Block a user