summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch')
-rw-r--r--net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch b/net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch
deleted file mode 100644
index 37f54b981fff..000000000000
--- a/net-irc/xchat/files/xchat-2.0.6-fix_dccsend.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/common/dcc.c.orig 2003-12-12 16:49:28.523536903 -0800
-+++ src/common/dcc.c 2003-12-12 16:50:50.339644657 -0800
-@@ -1659,6 +1659,11 @@
- * sending file.
- */
- dcc = find_dcc_from_id (pasvid, TYPE_SEND);
-+ /* defensive check for malformed requests */
-+ if( dcc == NULL ) {
-+ dcc_malformed( sess, nick, word_eol[4] + 2 );
-+ return;
-+ }
- dcc->addr = addr;
- dcc->port = port;
- dcc_connect(dcc);