aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mrcpv2.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-01-14 15:13:21 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-01-14 15:13:21 +0000
commitb89380dd7454b90adde427ea8c9dccac2cbcd89f (patch)
treea5b3472d9ccec06ceeb83b75c6c1c903799a12bc /epan/dissectors/packet-mrcpv2.c
parentc56910aa704030b22f19395d93420c8bdee0d042 (diff)
Fix CID 966603: Unused pointer value.
svn path=/trunk/; revision=47062
Diffstat (limited to 'epan/dissectors/packet-mrcpv2.c')
-rw-r--r--epan/dissectors/packet-mrcpv2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mrcpv2.c b/epan/dissectors/packet-mrcpv2.c
index b5fab6e431..863f7a686c 100644
--- a/epan/dissectors/packet-mrcpv2.c
+++ b/epan/dissectors/packet-mrcpv2.c
@@ -654,7 +654,7 @@ dissect_mrcpv2_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
/* mark whole packet as unknown and return */
col_add_str(pinfo->cinfo, COL_INFO, "UNKNOWN message");
- line_item = proto_tree_add_item(mrcpv2_tree, hf_mrcpv2_Unknown_Message, tvb, offset, tvb_len, ENC_UTF_8);
+ proto_tree_add_item(mrcpv2_tree, hf_mrcpv2_Unknown_Message, tvb, offset, tvb_len, ENC_UTF_8);
return tvb_len;
}