diff options
author | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-08-21 11:03:30 +0000 |
---|---|---|
committer | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-08-21 11:03:30 +0000 |
commit | 27f7d88c840a704b1b41324ace2e0fd3c2806857 (patch) | |
tree | 924290365ef9fa9081ef7aede148bdd47a51aeb0 /file.c | |
parent | 1108352f008b3fb0e53c56110edc71af507734b0 (diff) | |
download | wireshark-27f7d88c840a704b1b41324ace2e0fd3c2806857.tar.gz wireshark-27f7d88c840a704b1b41324ace2e0fd3c2806857.tar.bz2 wireshark-27f7d88c840a704b1b41324ace2e0fd3c2806857.zip |
Also fake empty field_info's by gracefully handling NULL field_info pointer elsewhere.
svn path=/trunk/; revision=29490
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2994,6 +2994,8 @@ match_subtree_text(proto_node *node, gpointer data) guint8 c_char; size_t c_match = 0; + g_assert(fi && "dissection with an invisible proto tree?"); + if (mdata->frame_matched) { /* We already had a match; don't bother doing any more work. */ return; |