From 7c2fe522baefe170ed4be78e6c6dbda8946247a1 Mon Sep 17 00:00:00 2001
From: Přemysl Janouch
Date: Sat, 6 Jun 2015 23:56:43 +0200
Subject: degesch: fix logging empty QUIT/PART reasons
---
degesch.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/degesch.c b/degesch.c
index 26d7fcf..4dd4779 100644
--- a/degesch.c
+++ b/degesch.c
@@ -3009,6 +3009,8 @@ error_ssl_1:
static char *
irc_to_utf8 (struct app_context *ctx, const char *text)
{
+ if (!text)
+ return NULL;
size_t len = strlen (text) + 1;
if (utf8_validate (text, len))
return xstrdup (text);
@@ -4309,7 +4311,7 @@ irc_handle_part (struct server *s, const struct irc_message *msg)
if (!irc_is_channel (s, channel_name))
return;
- const char *message = "";
+ const char *message = NULL;
if (msg->params.len > 1)
message = msg->params.vector[1];
@@ -4489,7 +4491,7 @@ irc_handle_quit (struct server *s, const struct irc_message *msg)
if (!user)
return;
- const char *message = "";
+ const char *message = NULL;
if (msg->params.len > 0)
message = msg->params.vector[0];
--
cgit v1.2.3-70-g09d2