summary refs log tree commit diff stats
path: root/src/common/proto-irc.c
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2021-03-03 15:39:02 -0600
committerPatrick Griffis <tingping@tingping.se>2021-03-03 15:39:02 -0600
commit964ae72fa8c770ae45c995fbdc38cae4c7ece5a3 (patch)
tree8bc2fa3e0a580bf9a197d13c4f9798aaaac59265 /src/common/proto-irc.c
parent87eb72814791037d6a00fec9f71d5809f9ee600b (diff)
Better handle various ctime() calls failing
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r--src/common/proto-irc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c
index 69501ee3..fa2d822b 100644
--- a/src/common/proto-irc.c
+++ b/src/common/proto-irc.c
@@ -454,7 +454,8 @@ channel_date (session *sess, char *chan, char *timestr,
 {
 	time_t timestamp = (time_t) atol (timestr);
 	char *tim = ctime (&timestamp);
-	tim[24] = 0;	/* get rid of the \n */
+	if (tim != NULL)
+		tim[24] = 0;	/* get rid of the \n */
 	EMIT_SIGNAL_TIMESTAMP (XP_TE_CHANDATE, sess, chan, tim, NULL, NULL, 0,
 								  tags_data->timestamp);
 }
@@ -602,7 +603,8 @@ process_numeric (session * sess, int n,
 			else
 			{
 				tim = ctime (&timestamp);
-				tim[19] = 0; 	/* get rid of the \n */
+				if (tim != NULL)
+					tim[19] = 0; 	/* get rid of the \n */
 				EMIT_SIGNAL_TIMESTAMP (XP_TE_WHOIS4T, whois_sess, word[4],
 											  outbuf, tim, NULL, 0, tags_data->timestamp);
 			}