With the speedup changes to epan/proto.c the tree will be faked to only contain...
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 27 Apr 2005 13:58:54 +0000 (13:58 +0000)
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 27 Apr 2005 13:58:54 +0000 (13:58 +0000)
commit66330f25369078b74691b2feca171adb646a192a
tree6638cbcab435bc32ce91ac8ddf47cd7fdb2eb23a
parentb0723a6419718d1dc733e54e73d9cd4ce84ab105
With the speedup changes to epan/proto.c  the tree will be faked to only contain those fields actually referenced by a filter.
Other nodes will never be created by the tree (sort of auto pruning of the tree).

While this greatly spped up the processing performance of ethereal, it makes it "dangerous" for apps that try to walk the tree directly.

rtp_analysis did not specify the fields "rtp.version" nor " rtp.ssrc" when dissecting the current packet  and as such these fields were no longer part of the tree.
This surprised rtp_analysis and a coredump resulted.

This change will add the field that we walkt the tree to find to the filter string so that they will be there.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14200 f5534014-38df-0310-8fa8-9805f1628bb7
gtk/rtp_analysis.c