Fixed random crash with /upgrade command (error when loading buffers)

This commit is contained in:
Sebastien Helleu 2006-09-23 09:09:36 +00:00
parent a33efdd755
commit 63416bb801
4 changed files with 8 additions and 4 deletions

View File

@ -1,10 +1,11 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2006-09-16
ChangeLog - 2006-09-23
Version 0.2.1 (under dev!):
* fixed random crash with /upgrade command (error when loading buffers)
* fixed buffer search by server/channel: now if only channel is specified,
a channel of another server can be found
* fixed highlight for DCC, invite and notice: when a window is displaying

View File

@ -72,7 +72,8 @@ channel_new (t_irc_server *server, int channel_type, char *channel_name)
new_channel->display_creation_date = 0;
new_channel->nicks = NULL;
new_channel->last_nick = NULL;
new_channel->buffer = NULL;
/* add new channel to queue */
new_channel->prev_channel = server->last_channel;
new_channel->next_channel = NULL;

View File

@ -1,10 +1,11 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2006-09-16
ChangeLog - 2006-09-23
Version 0.2.1 (under dev!):
* fixed random crash with /upgrade command (error when loading buffers)
* fixed buffer search by server/channel: now if only channel is specified,
a channel of another server can be found
* fixed highlight for DCC, invite and notice: when a window is displaying

View File

@ -72,7 +72,8 @@ channel_new (t_irc_server *server, int channel_type, char *channel_name)
new_channel->display_creation_date = 0;
new_channel->nicks = NULL;
new_channel->last_nick = NULL;
new_channel->buffer = NULL;
/* add new channel to queue */
new_channel->prev_channel = server->last_channel;
new_channel->next_channel = NULL;