aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-03-27 22:11:09 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-03-27 22:11:09 +0000
commitd0c11490d0a681248cbfe922186bdacba0e438fe (patch)
tree5b10e7efaa39cecc2d6da02a11938de85e019cdd /epan/dissectors/packet-rtp.c
parent8fc463c3cdf852a7f798e517d3aa3c53dd2d2e19 (diff)
Fix a typo
svn path=/trunk/; revision=13947
Diffstat (limited to 'epan/dissectors/packet-rtp.c')
-rw-r--r--epan/dissectors/packet-rtp.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/epan/dissectors/packet-rtp.c b/epan/dissectors/packet-rtp.c
index 433740c371..0e961bdcee 100644
--- a/epan/dissectors/packet-rtp.c
+++ b/epan/dissectors/packet-rtp.c
@@ -392,12 +392,13 @@ dissect_rtp_data( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
{
tvbuff_t *newtvb;
struct _rtp_conversation_info *p_conv_data = NULL;
+ gboolean found_match = FALSE;
newtvb = tvb_new_subset( tvb, offset, data_len, data_reported_len );
/* if the payload type is dynamic (96 to 127), we check if the conv is set and we look for the pt definition */
if ( (payload_type >=96) && (payload_type <=127) ) {
- p_conv_data = p_get_proto_data(pinfo->fd, proto_rtp);
+ p_conv_data = p_get_proto_data(pinfo->fd, proto_rtp);
if (p_conv_data && p_conv_data->rtp_dyn_payload) {
gchar *payload_type_str = NULL;
payload_type_str = g_hash_table_lookup(p_conv_data->rtp_dyn_payload, &payload_type);
@@ -407,10 +408,10 @@ dissect_rtp_data( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
}
}
/* if we don't found, it is static OR could be set static from the preferences */
- if (found_match == FALSE)
- if (!dissector_try_port(rtp_pt_dissector_table, payload_type, newtvb, pinfo, tree))
- proto_tree_add_item( rtp_tree, hf_rtp_data, newtvb, 0, -1, FALSE );
- }
+ if (found_match == FALSE)
+ if (!dissector_try_port(rtp_pt_dissector_table, payload_type, newtvb, pinfo, tree))
+ proto_tree_add_item( rtp_tree, hf_rtp_data, newtvb, 0, -1, FALSE );
+
}
static struct _rtp_info rtp_info;