[Scummvm-git-logs] scummvm master -> 70278bc033372b95bf13beb0c19b6d970218d011

lephilousophe noreply at scummvm.org
Sat Feb 7 18:39:45 UTC 2026


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

Summary:
70278bc033 TINYGL: Fixed uninitialized 'z' variable warnings


Commit: 70278bc033372b95bf13beb0c19b6d970218d011
    https://github.com/scummvm/scummvm/commit/70278bc033372b95bf13beb0c19b6d970218d011
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2026-02-07T19:39:25+01:00

Commit Message:
TINYGL: Fixed uninitialized 'z' variable warnings

Changed paths:
    test/common/memory.h


diff --git a/test/common/memory.h b/test/common/memory.h
index da0ca7c279f..896466d2113 100644
--- a/test/common/memory.h
+++ b/test/common/memory.h
@@ -10,6 +10,8 @@ public:
 		const uint16 step2[8] = { 0, 1, 2, 2, 2, 2, 1, 0 };
 		const uint16 step3[8] = { 0, 1, 2, 3, 3, 2, 1, 0 };
 
+		//memset(expected, 0, sizeof(expected));
+
 		Common::memset16(expected + 1, 1, 6);
 
 		TS_ASSERT_EQUALS(memcmp(expected, step1, sizeof(expected)), 0);




More information about the Scummvm-git-logs mailing list