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:
@@ -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
|
||||
|
||||
@@ -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
@@ -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
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user