Displaying 1 result from an estimated 1 matches for "length_remain".
2008 Nov 22
0
[patch] [vuxml] net/wireshark: fix DoS in SMTP dissector
....c 2008/04/13 16:33:44 24989
+@@ -97,10 +97,6 @@
+ "DATA fragments"
+ };
+
+-/* Define media_type/Content type table */
+-static dissector_table_t media_type_dissector_table;
+-
+-
+ static dissector_handle_t imf_handle = NULL;
+
+ /*
+@@ -175,6 +171,7 @@
+ gint length_remaining;
+ gboolean eom_seen = FALSE;
+ gint next_offset;
++ gint loffset;
+ gboolean is_continuation_line;
+ int cmdlen;
+ fragment_data *frag_msg = NULL;
+@@ -217,21 +214,6 @@
+...