aboutsummaryrefslogtreecommitdiffstats
path: root/proto.h
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-10-11 14:58:04 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-10-11 14:58:04 +0000
commita1f482bfda074f29dbd531ced00a6f8bbbde9ea4 (patch)
tree1a09727dba0852332b9378d7432230be9893d55d /proto.h
parenta08a29952e16719fa5f983ccdd7bd691dd52ce9d (diff)
Fixed bug reported by Laurent regarding byte-string filters not
checking the length of the packet before copying bytes from the packet. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@807 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index d8de4c883c..4fdad5f9c9 100644
--- a/proto.h
+++ b/proto.h
@@ -1,7 +1,7 @@
/* proto.h
* Definitions for protocol display
*
- * $Id: proto.h,v 1.13 1999/09/18 15:44:40 deniel Exp $
+ * $Id: proto.h,v 1.14 1999/10/11 14:58:04 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -119,6 +119,7 @@ typedef struct proto_tree_search_info {
int target;
int parent;
const guint8 *packet_data;
+ guint packet_len;
GNodeTraverseFunc traverse_func;
union {
GArray *array;