1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

Lists_Add(): use size of destination when copying data

This fixes the following warning of clang:

/src/ngircd/lists.c:152:44:
 warning: size argument in 'strlcpy' call appears to be size of the
 source; expected the size of the destination [-Wstrlcpy-strlcat-size]

But it isn't a real problem, because the size of the source always is the
same than the size of the destination ...
This commit is contained in:
Alexander Barton 2012-04-17 12:54:38 +02:00
parent 67bd1bf34f
commit 8ec17063a6

View File

@ -149,7 +149,8 @@ Lists_Add(struct list_head *h, const char *Mask, time_t ValidUntil,
if (Reason) {
newelem->reason = malloc(strlen(Reason) + 1);
if (newelem->reason)
strlcpy(newelem->reason, Reason, strlen(Reason) + 1);
strlcpy(newelem->reason, Reason,
sizeof(newelem->reason));
else
Log(LOG_EMERG,
"Can't allocate memory for new list reason text!");