btmesh: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang

Change-Id: I7218d74e1dc4d014dadd86f55b7805ba1581f9c3
Reviewed-on: https://code.wireshark.org/review/24346
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2017-11-11 15:30:38 +01:00 committed by Anders Broman
parent 73329d786b
commit ff302a283d
1 changed files with 1 additions and 3 deletions

View File

@ -555,7 +555,6 @@ dissect_btmesh_transport_constrol_message(tvbuff_t *tvb, packet_info *pinfo, pro
offset++;
/* FriendCounter 2 octets */
proto_tree_add_item(sub_tree, hf_btmesh_friendcounter, tvb, offset, 1, ENC_BIG_ENDIAN);
offset+= 2;
break;
case 5:
/* 3.6.5.5 Friend Clear */
@ -564,7 +563,6 @@ dissect_btmesh_transport_constrol_message(tvbuff_t *tvb, packet_info *pinfo, pro
offset += 2;
/* LPNCounter 2 octets */
proto_tree_add_item(sub_tree, hf_btmesh_lpncounter, tvb, offset, 1, ENC_BIG_ENDIAN);
offset += 2;
break;
case 6:
/* 3.6.5.6 Friend Clear Confirm */
@ -573,7 +571,7 @@ dissect_btmesh_transport_constrol_message(tvbuff_t *tvb, packet_info *pinfo, pro
offset += 2;
/* LPNCounter 2 octets */
proto_tree_add_item(sub_tree, hf_btmesh_lpncounter, tvb, offset, 1, ENC_BIG_ENDIAN);
offset += 2;
break;
case 7:
/* 3.6.5.7 Friend Subscription List Add */