summaryrefslogtreecommitdiff
path: root/src/irc/dcc/dcc-send.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-01-20 02:18:37 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-01-20 02:18:37 +0000
commitd6abc84ab5e3f7653f657e9b5fb22230a0b8db4d (patch)
treebc9607feebf8e5fbee02e4480f289c41e5ba949f /src/irc/dcc/dcc-send.c
parent59e32a18c9fb50058e588693907ad7b02a7b9daf (diff)
downloadirssi-d6abc84ab5e3f7653f657e9b5fb22230a0b8db4d.zip
Connection tag variable wasn't deinitialized, so when destroying a DCC
record it might have stopped a wrong timeout/io func (or probably not, because new source func was allocated soon after, and it'd have the same tag which would just be free'd twice). git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2324 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/dcc/dcc-send.c')
-rw-r--r--src/irc/dcc/dcc-send.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/irc/dcc/dcc-send.c b/src/irc/dcc/dcc-send.c
index 9d312e13..7c35cc4d 100644
--- a/src/irc/dcc/dcc-send.c
+++ b/src/irc/dcc/dcc-send.c
@@ -128,8 +128,9 @@ static void dcc_send_connected(SEND_DCC_REC *dcc)
that the host of the nick who we sent the request matches the
address who connected us. */
- g_source_remove(dcc->tagconn);
net_disconnect(dcc->handle);
+ g_source_remove(dcc->tagconn);
+ dcc->tagconn = -1;
dcc->starttime = time(NULL);
dcc->handle = handle;