Fix infinite loop in bthci_evt eir data handling

svn path=/trunk/; revision=45739
This commit is contained in:
Pascal Quantin 2012-10-23 20:27:57 +00:00
parent afc96b6276
commit 67fdfbbcde
1 changed files with 2 additions and 1 deletions

View File

@ -1454,7 +1454,8 @@ dissect_bthci_evt_inq_result_with_rssi(tvbuff_t *tvb, int offset, packet_info *p
static int
dissect_bthci_evt_eir_ad_data(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, guint8 size)
{
guint8 i, j, length, type;
guint16 i;
guint8 j, length, type;
proto_item *ti_eir=NULL;
proto_item *ti_eir_subtree=NULL;