[Scummvm-git-logs] scummvm master -> 9b597e0b055793a29407991e8bfdb5a5d09aa686

digitall 547637+digitall at users.noreply.github.com
Fri Apr 30 05:01:54 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
9b597e0b05 GLK: COMPREHEND: Fix GCC Format Truncation Warnings


Commit: 9b597e0b055793a29407991e8bfdb5a5d09aa686
    https://github.com/scummvm/scummvm/commit/9b597e0b055793a29407991e8bfdb5a5d09aa686
Author: D G Turner (digitall at scummvm.org)
Date: 2021-04-30T06:01:27+01:00

Commit Message:
GLK: COMPREHEND: Fix GCC Format Truncation Warnings

Changed paths:
    engines/glk/comprehend/debugger_dumper.cpp


diff --git a/engines/glk/comprehend/debugger_dumper.cpp b/engines/glk/comprehend/debugger_dumper.cpp
index e5fe988c39..6c3d74b84c 100644
--- a/engines/glk/comprehend/debugger_dumper.cpp
+++ b/engines/glk/comprehend/debugger_dumper.cpp
@@ -252,7 +252,7 @@ void DebuggerDumper::dumpDictionary() {
 
 void DebuggerDumper::dumpWordMap() {
 	Word *word[3];
-	char str[3][6];
+	char str[3][7];
 	WordMap *map;
 	uint i, j;
 




More information about the Scummvm-git-logs mailing list