netplay_frontend.c - show_chat() - prevent warning 'format truncation' -

snprintf output between 3 and 129 bytes into a destination of size 96
This commit is contained in:
libretroadmin 2022-06-19 18:19:47 +02:00
parent cf67c102ed
commit e0c7e78e27

View File

@ -4857,7 +4857,7 @@ static void relay_chat(netplay_t *netplay, const char *nick, const char *msg)
static void show_chat(netplay_t *netplay, const char *nick, const char *msg)
{
char formatted_chat[NETPLAY_CHAT_MAX_SIZE];
char formatted_chat[NETPLAY_CHAT_MAX_SIZE + 64];
/* Truncate the message if necessary. */
snprintf(formatted_chat, sizeof(formatted_chat), "%s: %s", nick, msg);