aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ipars.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-06-29 22:00:03 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-06-29 22:00:03 +0000
commite5d0603e0b308d552936fd0b0e0bbfd8ee881efd (patch)
tree2b4503fd36702a20a3b367ed1d8a7cc0c0f568b3 /epan/dissectors/packet-ipars.c
parent43be7b67aaa83e32816e0ef90f88cd6c4c5f0332 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=50239
Diffstat (limited to 'epan/dissectors/packet-ipars.c')
-rw-r--r--epan/dissectors/packet-ipars.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ipars.c b/epan/dissectors/packet-ipars.c
index 6a3e2c17df..572704f09b 100644
--- a/epan/dissectors/packet-ipars.c
+++ b/epan/dissectors/packet-ipars.c
@@ -144,7 +144,6 @@ dissect_ipars(tvbuff_t *tvb, packet_info *pinfo _U_ , proto_tree *tree)
default: g_snprintf(eom_msg, MAX_EOM_MSG_SIZE, "Unknown EOM type (0x%2.2X)", ia); break;
}
proto_tree_add_protocol_format(ipars_tree, proto_ipars, tvb, 4, 1, "%s", eom_msg);
- ia = tvb_get_guint8(tvb, 5) & 0x3f;
proto_tree_add_protocol_format(ipars_tree, proto_ipars, tvb, 5, 1, "Good BCC");
} else {
next_tvb = tvb_new_subset_remaining(tvb, 3);