aboutsummaryrefslogtreecommitdiff
path: root/net/wireshark/files
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2012-10-21 14:01:14 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2012-10-21 14:01:14 +0000
commit223a98b11ff791d6877713d7a7093a2a2644dd2b (patch)
treee0f306e128d25c350065421bd1f1150c536faf4b /net/wireshark/files
parentac89caedb6135be4f140308b38658872180f1d3b (diff)
downloadports-223a98b11ff791d6877713d7a7093a2a2644dd2b.tar.gz
ports-223a98b11ff791d6877713d7a7093a2a2644dd2b.zip
Update to 1.8.3. See
Notes
Notes: svn path=/head/; revision=306236
Diffstat (limited to 'net/wireshark/files')
-rw-r--r--net/wireshark/files/patch-cve-2012-354823
1 files changed, 0 insertions, 23 deletions
diff --git a/net/wireshark/files/patch-cve-2012-3548 b/net/wireshark/files/patch-cve-2012-3548
deleted file mode 100644
index b874dd737ff2..000000000000
--- a/net/wireshark/files/patch-cve-2012-3548
+++ /dev/null
@@ -1,23 +0,0 @@
-Obtained-from: https://bugs.wireshark.org/bugzilla/attachment.cgi?id=9009&action=diff&context=patch&collapsed=&headers=1&format=raw
-
---- epan/dissectors/packet-drda.c (revision 44689)
-+++ epan/dissectors/packet-drda.c (working copy)
-@@ -55,6 +55,7 @@
- #include <epan/packet.h>
- #include <epan/conversation.h>
- #include <epan/prefs.h>
-+#include <epan/expert.h>
- #include "packet-tcp.h"
-
- static int proto_drda = -1;
-@@ -696,6 +697,10 @@
- {
- iCommand = tvb_get_ntohs(tvb, offset + 8);
- iLength = tvb_get_ntohs(tvb, offset + 0);
-+ if (iLength < 10) {
-+ expert_add_info_format(pinfo, NULL, PI_MALFORMED, PI_ERROR, "Invalid length detected (%u): should be at least 10 bytes long", iLength);
-+ break;
-+ }
- /* iCommandEnd is the length of the packet up to the end of the current command */
- iCommandEnd += iLength;
-