degesch: fix a potential SIGSEGV

This commit is contained in:
Přemysl Eric Janouch 2015-04-21 00:40:30 +02:00
parent 5632eecd42
commit c69c8048b4
1 changed files with 5 additions and 5 deletions

View File

@ -225,7 +225,7 @@ channel_user_destroy (struct channel_user *self)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// We keep references to channels in their users and buffers,
// as well as in the name lookup table.
// and weak references in the name lookup table.
struct channel
{
@ -531,15 +531,15 @@ app_context_free (struct app_context *self)
if (self->ssl_ctx)
SSL_CTX_free (self->ssl_ctx);
str_map_free (&self->irc_users);
str_map_free (&self->irc_channels);
str_map_free (&self->irc_buffer_map);
if (self->irc_user)
user_unref (self->irc_user);
free (self->irc_user_mode);
free (self->irc_user_host);
str_map_free (&self->irc_users);
str_map_free (&self->irc_channels);
str_map_free (&self->irc_buffer_map);
poller_free (&self->poller);
LIST_FOR_EACH (struct buffer, iter, self->buffers)