bluetooth: Fix sync info in extended advertising header

Fix the sync info field length in extended advertising header set to the
wrong length.

Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
This commit is contained in:
Joakim Andersson 2021-06-25 11:39:09 +02:00 committed by Stig Bjørlykke
parent 3afd332455
commit de9d5f76ff
1 changed files with 1 additions and 1 deletions

View File

@ -1217,7 +1217,7 @@ dissect_btle(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
guint16 sf;
/* Sync Info */
sync_info_item = proto_tree_add_item(ext_header_tree, hf_extended_advertising_sync_info, tvb, offset, 1, ENC_NA);
sync_info_item = proto_tree_add_item(ext_header_tree, hf_extended_advertising_sync_info, tvb, offset, 18, ENC_NA);
sync_info_tree = proto_item_add_subtree(sync_info_item, ett_extended_advertising_sync_info);
sf = tvb_get_guint16(tvb, offset, ENC_LITTLE_ENDIAN);