aboutsummaryrefslogtreecommitdiff
path: root/degesch.c
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2015-04-21 21:36:59 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2015-04-21 21:36:59 +0200
commit9c0f0c0e33d583c7b7404c8318fda0c42b35997e (patch)
tree9eef431b71e4fb92be23b5aa777d5c182f53789d /degesch.c
parente8e039c11c937426c5a03e38e95485a2cd57068f (diff)
downloadxK-9c0f0c0e33d583c7b7404c8318fda0c42b35997e.tar.gz
xK-9c0f0c0e33d583c7b7404c8318fda0c42b35997e.tar.xz
xK-9c0f0c0e33d583c7b7404c8318fda0c42b35997e.zip
degesch: don't require channels to have buffers
Diffstat (limited to 'degesch.c')
-rw-r--r--degesch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/degesch.c b/degesch.c
index 0cac7d3..8221cb8 100644
--- a/degesch.c
+++ b/degesch.c
@@ -2168,9 +2168,9 @@ irc_handle_quit (struct app_context *ctx, const struct irc_message *msg)
LIST_FOR_EACH (struct user_channel, iter, user->channels)
{
buffer = str_map_find (&ctx->irc_buffer_map, iter->channel->name);
- hard_assert (buffer != NULL);
- buffer_send (ctx, buffer, BUFFER_LINE_QUIT, 0,
- msg->prefix, message, "");
+ if (buffer)
+ buffer_send (ctx, buffer, BUFFER_LINE_QUIT, 0,
+ msg->prefix, message, "");
// Unlink the user from the channel
struct channel *channel = iter->channel;