Fix gcc 8 compile by using strcpy instead of memcpy for PM

This commit is contained in:
mazmazz 2018-12-24 18:37:54 -05:00
parent 7fc79f0b88
commit 32697ddf61
1 changed files with 2 additions and 2 deletions

View File

@ -499,7 +499,7 @@ static void DoSayCommand(SINT8 target, size_t usedargs, UINT8 flags)
}
buf[0] = target;
newmsg = msg+5+spc;
memcpy(msg, newmsg, 252);
strlcpy(msg, newmsg, 252);
}
SendNetXCmd(XD_SAY, buf, strlen(msg) + 1 + msg-buf);
@ -1024,7 +1024,7 @@ static void HU_queueChatChar(char c)
// we need to get rid of the /pm<node>
newmsg = msg+5+spc;
memcpy(msg, newmsg, 255);
strlcpy(msg, newmsg, 255);
}
if (ci > 3) // don't send target+flags+empty message.
{