1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 12:56:37 +02:00

Fixed crash when purging DCC with high number of DCC (> window size)

This commit is contained in:
Sebastien Helleu
2006-07-30 20:41:49 +00:00
parent aff43aa355
commit b11f2b2c4b
4 changed files with 8 additions and 2 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2006-07-27
ChangeLog - 2006-07-30
Version 0.2.0 (under dev!):
* fixed crash when purging DCC with high number of DCC (> window size)
* fixed completion for command handlers (now empty completion_template
means nick completion, "-" string means no completion at all)
* fixed nick alignment problem when look_nickmode is off
+2
View File
@@ -706,7 +706,9 @@ gui_exec_action_dcc (t_gui_window *window, char *actions)
/* purge old DCC */
case 'p':
case 'P':
window->dcc_first = NULL;
window->dcc_selected = NULL;
window->dcc_last_displayed = NULL;
ptr_dcc = dcc_list;
while (ptr_dcc)
{
+2 -1
View File
@@ -1,9 +1,10 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2006-07-27
ChangeLog - 2006-07-30
Version 0.2.0 (under dev!):
* fixed crash when purging DCC with high number of DCC (> window size)
* fixed completion for command handlers (now empty completion_template
means nick completion, "-" string means no completion at all)
* fixed nick alignment problem when look_nickmode is off
+2
View File
@@ -706,7 +706,9 @@ gui_exec_action_dcc (t_gui_window *window, char *actions)
/* purge old DCC */
case 'p':
case 'P':
window->dcc_first = NULL;
window->dcc_selected = NULL;
window->dcc_last_displayed = NULL;
ptr_dcc = dcc_list;
while (ptr_dcc)
{