aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rohc.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-12-18 16:38:31 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-12-18 16:38:31 +0000
commitec24a7f89b05e58e3db63598003c43c2ef436fa8 (patch)
tree86f2c32e843bb9e8fdd9989eb617330aedd29f10 /epan/dissectors/packet-rohc.c
parente452b3a12c7b14e409fe5bb8fbd98e188084ab24 (diff)
Fix Coverity CID's 1339 and 1340: UNUSED_VALUE.
svn path=/trunk/; revision=40241
Diffstat (limited to 'epan/dissectors/packet-rohc.c')
-rw-r--r--epan/dissectors/packet-rohc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rohc.c b/epan/dissectors/packet-rohc.c
index 50f5189cff..387f6aba21 100644
--- a/epan/dissectors/packet-rohc.c
+++ b/epan/dissectors/packet-rohc.c
@@ -390,7 +390,7 @@ dissect_rohc_ir_rtp_profile_dynamic(tvbuff_t *tvb, proto_tree *tree, int offset,
break;
default:
- item = proto_tree_add_text(tree, tvb, offset, 0, "Profile not supported");
+ proto_tree_add_text(tree, tvb, offset, 0, "Profile not supported");
return -1;
}
@@ -605,7 +605,7 @@ dissect_rohc_ir_rtp_udp_profile_static(tvbuff_t *tvb, proto_tree *tree, packet_i
break;
default:
- item = proto_tree_add_text(tree, tvb, offset, 0, "Profile not supported");
+ proto_tree_add_text(tree, tvb, offset, 0, "Profile not supported");
return -1;
}