Potentially fixed strncpy warning by Coverity.

pull/2967/head
Marc-Antoine Lortie 2020-01-28 14:02:09 -05:00
parent 5f30d4c0f8
commit 81bc7825d1
1 changed files with 5 additions and 4 deletions

View File

@ -795,11 +795,12 @@ public:
Write<uint16_t>(out, compressed);
// == 20 bytes
char buff[256];
strncpy(buff, pFile, 256);
char buff[256] = {0};
ai_snprintf(buff, 256, "%s", pFile);
out->Write(buff, sizeof(char), 256);
strncpy(buff, cmd, 128);
memset(buff, 0, sizeof(buff));
ai_snprintf(buff, 128, "%s", cmd);
out->Write(buff, sizeof(char), 128);
// leave 64 bytes free for future extensions