aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rsvp.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-04-19 16:16:22 +0000
committerEvan Huus <eapache@gmail.com>2013-04-19 16:16:22 +0000
commitca6a24df421d4592f233c37eca8eefbae84a2c9c (patch)
tree66880788a3f940f471fa95da00f171d335995914 /epan/dissectors/packet-rsvp.c
parent29734bf7b30c1ab672223472ed42a8797d409ea9 (diff)
Fix apparent copy-paste error leading to a 'used-uninitialized' warning.
svn path=/trunk/; revision=48929
Diffstat (limited to 'epan/dissectors/packet-rsvp.c')
-rw-r--r--epan/dissectors/packet-rsvp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rsvp.c b/epan/dissectors/packet-rsvp.c
index b1902c3f14..11114deb8a 100644
--- a/epan/dissectors/packet-rsvp.c
+++ b/epan/dissectors/packet-rsvp.c
@@ -6203,7 +6203,7 @@ dissect_rsvp_3gpp_object(proto_tree *ti _U_, proto_tree *rsvp_object_tree,
for (j = 0; j < num_qos_att_set; j++) {
qos_attribute_set_len = tvb_get_bits8(tvb,bit_offset,4);
ti = proto_tree_add_text(qos_sub_blob_tree, tvb, bit_offset>>3, qos_attribute_set_len, "QoS_ATTRIBUTE_SET %u(%u bytes)",
- i+1,
+ j+1,
qos_attribute_set_len);
qos_att_tree = proto_item_add_subtree(ti, ett_treelist[TT_3GPP_OBJ_QOS_SUB_BLOB]);
proto_tree_add_bits_item(qos_att_tree, hf_rsvp_3gpp_qos_att_set_len, tvb, bit_offset, 4, ENC_BIG_ENDIAN);