From 01af8f057a1e2ac153ab58500957d5df14064f98 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Mon, 2 Sep 2013 23:10:31 +0000 Subject: Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang svn path=/trunk/; revision=51652 --- epan/dissectors/packet-bthci_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-bthci_cmd.c') diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c index 9646aac1ef..eac2357432 100644 --- a/epan/dissectors/packet-bthci_cmd.c +++ b/epan/dissectors/packet-bthci_cmd.c @@ -3309,7 +3309,7 @@ dissect_bthci_cmd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) if (tvb_length_remaining(tvb, offset) > 0) { proto_tree_add_expert(bthci_cmd_tree, pinfo, &ei_command_parameter_unexpected, tvb, offset, -1); - offset += tvb_length_remaining(tvb, offset); + /*offset += tvb_length_remaining(tvb, offset);*/ } } -- cgit v1.2.3