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

svn path=/trunk/; revision=50348
This commit is contained in:
Alexis La Goutte 2013-07-03 16:43:02 +00:00
parent d34f4c3b53
commit 88211d30ae
1 changed files with 7 additions and 7 deletions

View File

@ -202,7 +202,7 @@ dissect_brdwlk_err(proto_tree *parent_tree, tvbuff_t *tvb, int offset)
if (flags & 0x80) {
proto_item_append_text(item, " Ctrl Char Inside Frame");
}
flags &= (~( 0x80 ));
/*flags &= (~( 0x80 ));*/
}
/* Code to actually dissect the packets */
@ -319,13 +319,13 @@ dissect_brdwlk(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
p_add_proto_data(pinfo->fd, proto_brdwlk, 0, &packet_count);
}
}
if (tree) {
hidden_item = proto_tree_add_boolean(brdwlk_tree, hf_brdwlk_drop,
tvb, offset, 0, dropped_packets);
PROTO_ITEM_SET_HIDDEN(hidden_item);
}
}
if (tree) {
hidden_item = proto_tree_add_boolean(brdwlk_tree, hf_brdwlk_drop,
tvb, offset, 0, dropped_packets);
PROTO_ITEM_SET_HIDDEN(hidden_item);
}
packet_count = pkt_cnt;
error=tvb_get_guint8(tvb, offset+2);