From 552e98b7a39043d06ae98631878773bd736a90bd Mon Sep 17 00:00:00 2001 From: Chris Maynard Date: Wed, 20 Feb 2013 00:53:19 +0000 Subject: Fix Coverity CID 984638: Unused pointer value. svn path=/trunk/; revision=47754 --- epan/dissectors/packet-hartip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-hartip.c') diff --git a/epan/dissectors/packet-hartip.c b/epan/dissectors/packet-hartip.c index 4a5719426c..f92bd4257a 100644 --- a/epan/dissectors/packet-hartip.c +++ b/epan/dissectors/packet-hartip.c @@ -901,7 +901,7 @@ dissect_hartip_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, msg_id_str, msg_type_str, transaction_id); col_set_fence(pinfo->cinfo, COL_INFO); - ti = proto_tree_add_item(hdr_tree, hf_hartip_hdr_msg_length, tvb, offset, 2, ENC_BIG_ENDIAN); + proto_tree_add_item(hdr_tree, hf_hartip_hdr_msg_length, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; bodylen = length - HARTIP_HEADER_LENGTH; -- cgit v1.2.3