aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtsp.c
diff options
context:
space:
mode:
authorMichael Tüxen <tuexen@fh-muenster.de>2008-05-07 06:23:03 +0000
committerMichael Tüxen <tuexen@fh-muenster.de>2008-05-07 06:23:03 +0000
commit607076675a47c63bdec5c990c6f447cc86a2670c (patch)
tree71cd5e3b000d1598a61c42957e13b096ef0e56f9 /epan/dissectors/packet-rtsp.c
parent1cca1f8082f8c845da92afcb44c479b3ffd68f13 (diff)
Comment out condition which is always true (based on the
choosen data types). svn path=/trunk/; revision=25250
Diffstat (limited to 'epan/dissectors/packet-rtsp.c')
-rw-r--r--epan/dissectors/packet-rtsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rtsp.c b/epan/dissectors/packet-rtsp.c
index 8a257fb77c..0763d17dec 100644
--- a/epan/dissectors/packet-rtsp.c
+++ b/epan/dissectors/packet-rtsp.c
@@ -244,7 +244,9 @@ dissect_rtspinterleaved(tvbuff_t *tvb, int offset, packet_info *pinfo,
if (conv &&
(data = conversation_get_proto_data(conv, proto_rtsp)) &&
+ /* Add the following condition if it is not always true.
rf_chan < RTSP_MAX_INTERLEAVED &&
+ */
(dissector = data->interleaved[rf_chan].dissector)) {
call_dissector(dissector, next_tvb, pinfo, tree);
} else {