Commit b86ed368 authored by Gustavo F. Padovan's avatar Gustavo F. Padovan

Bluetooth: Check return value of hci_recv_stream_fragment()

It may return error and in this case we do add to the stats.
Signed-off-by: default avatarGustavo F. Padovan <padovan@profusion.mobi>
parent 78b4a56c
...@@ -151,8 +151,13 @@ static inline int h4_check_data_len(struct h4_struct *h4, int len) ...@@ -151,8 +151,13 @@ static inline int h4_check_data_len(struct h4_struct *h4, int len)
/* Recv data */ /* Recv data */
static int h4_recv(struct hci_uart *hu, void *data, int count) static int h4_recv(struct hci_uart *hu, void *data, int count)
{ {
if (hci_recv_stream_fragment(hu->hdev, data, count) < 0) int ret;
ret = hci_recv_stream_fragment(hu->hdev, data, count);
if (ret < 0) {
BT_ERR("Frame Reassembly Failed"); BT_ERR("Frame Reassembly Failed");
return ret;
}
return count; return count;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment