Fixed random crash with /upgrade command (error when loading buffers)
This commit is contained in:
parent
a33efdd755
commit
63416bb801
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user