From ce03797949ed95e160864881e4f63ac51dadfab6 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 6 Jan 2024 09:32:13 +1100 Subject: [PATCH] - Silence GCC warning in `RTS_IsInitialized()`. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /home/mrichters/Repos/Raze/source/core/rts.cpp: In function ‘bool RTS_IsInitialized()’: /home/mrichters/Repos/Raze/source/core/rts.cpp:123:51: warning: ‘.rts’ directive output may be truncated writing 4 bytes into a region of size between 3 and 11 [-Wformat-truncation=] 123 | snprintf(rts, 16, "rts%02d.rts", i); | ^~~~ /home/mrichters/Repos/Raze/source/core/rts.cpp:123:33: note: ‘snprintf’ output between 10 and 18 bytes into a destination of size 16 123 | snprintf(rts, 16, "rts%02d.rts", i); | ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~ --- source/core/rts.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/rts.cpp b/source/core/rts.cpp index 6677bcd03..bb24cf460 100644 --- a/source/core/rts.cpp +++ b/source/core/rts.cpp @@ -119,8 +119,8 @@ bool RTS_IsInitialized() { if (li.size > 0) { - char rts[16]; - snprintf(rts, 16, "rts%02d.rts", i); + char rts[18]; + snprintf(rts, 18, "rts%02d.rts", i); int lump = fileSystem.AddFromBuffer(rts, (char*)RTSFile.Data() + li.position, li.size, -1, 0); li.sid = soundEngine->AddSoundLump(rts, lump, 0, -1); }