summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2023-09-17 20:16:35 +0200
committerAlexander Barton <alex@barton.de>2023-09-17 20:16:35 +0200
commit232c7382ded45775f777567183675c3c1f448807 (patch)
tree3c2b6331469bbed6dd920cc0da7ef25d64a00a90 /src
parent30ba325ddedb573cfef70e318db1d294c9703b5d (diff)
downloadngircd-232c7382ded45775f777567183675c3c1f448807.tar.gz
ngircd-232c7382ded45775f777567183675c3c1f448807.zip
Silence compiler warning in Init_New_Client()
Use strdup() instead of pointless strndup() to fix the following
compiler warning:

client.c: In function ‘Init_New_Client’:
client.c:216:32: warning: ‘strndup’ specified bound 127 exceeds source size 5 [-Wstringop-overread]
  216 |                 client->away = strndup(DEFAULT_AWAY_MSG, CLIENT_AWAY_LEN - 1);
      |                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngircd/client.c b/src/ngircd/client.c
index 06c34bbf..48768514 100644
--- a/src/ngircd/client.c
+++ b/src/ngircd/client.c
@@ -213,7 +213,7 @@ Init_New_Client(CONN_ID Idx, CLIENT *Introducer, CLIENT *TopServer,
 		Generate_MyToken(client);
 
 	if (Client_HasMode(client, 'a'))
-		client->away = strndup(DEFAULT_AWAY_MSG, CLIENT_AWAY_LEN - 1);
+		client->away = strdup(DEFAULT_AWAY_MSG);
 
 	client->next = (POINTER *)My_Clients;
 	My_Clients = client;