aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-06-25 17:35:17 +0000
committerGuy Harris <guy@alum.mit.edu>2003-06-25 17:35:17 +0000
commit9fa514388ccd0de9074a015f278a2518cc163571 (patch)
tree01eb89169cbd73e62c4a1a40562ec96509fe632e
parent4d94e1746f0944715c495b00b6d8c4c8cd179eca (diff)
GCC 3.3 noticed that checking whether the length of the slice is > 65535
is pointless, as it's a 16-bit unsigned quantity. Remove those checks - but note in a comment that WTAP_MAX_PACKET_SIZE must be at least 65535 (as there might well be link-layer types with packets at least that large). svn path=/trunk/; revision=7934
-rw-r--r--wiretap/etherpeek.c14
-rw-r--r--wiretap/wtap.h3
2 files changed, 3 insertions, 14 deletions
diff --git a/wiretap/etherpeek.c b/wiretap/etherpeek.c
index 0c1e592366..6cf684a5cb 100644
--- a/wiretap/etherpeek.c
+++ b/wiretap/etherpeek.c
@@ -2,7 +2,7 @@
* Routines for opening EtherPeek (and TokenPeek?) files
* Copyright (c) 2001, Daniel Thompson <d.thompson@gmx.net>
*
- * $Id: etherpeek.c,v 1.22 2002/08/28 20:30:44 jmayer Exp $
+ * $Id: etherpeek.c,v 1.23 2003/06/25 17:35:16 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -362,12 +362,6 @@ static gboolean etherpeek_read_v7(wtap *wth, int *err, long *data_offset)
sliceLength = length;
}
- /* test for corrupt data */
- if (sliceLength > WTAP_MAX_PACKET_SIZE) {
- *err = WTAP_ERR_BAD_RECORD;
- return FALSE;
- }
-
*data_offset = wth->data_offset;
/* fill in packet header length values before slicelength may be
@@ -512,12 +506,6 @@ static gboolean etherpeek_read_v56(wtap *wth, int *err, long *data_offset)
sliceLength = length;
}
- /* test for corrupt data */
- if (sliceLength > WTAP_MAX_PACKET_SIZE) {
- *err = WTAP_ERR_BAD_RECORD;
- return FALSE;
- }
-
*data_offset = wth->data_offset;
/* fill in packet header values */
diff --git a/wiretap/wtap.h b/wiretap/wtap.h
index 903da1b15d..298f966921 100644
--- a/wiretap/wtap.h
+++ b/wiretap/wtap.h
@@ -1,6 +1,6 @@
/* wtap.h
*
- * $Id: wtap.h,v 1.137 2003/05/15 07:14:46 guy Exp $
+ * $Id: wtap.h,v 1.138 2003/06/25 17:35:17 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -175,6 +175,7 @@
/*
* Maximum packet size we'll support.
+ * It must be at least 65535.
*/
#define WTAP_MAX_PACKET_SIZE 65535