[Scummvm-cvs-logs] scummvm master -> ed3783af4c9dc548674d6631343c4c27b37b051c

Strangerke Strangerke at scummvm.org
Wed Oct 2 22:57:23 CEST 2013


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

Summary:
df266bc166 TSAGE: Fix uninitialized variable.
ed3783af4c Merge pull request #404 from rrebello/tsage_fix


Commit: df266bc1663bd57e6465faaf66912615e9b9b6b0
    https://github.com/scummvm/scummvm/commit/df266bc1663bd57e6465faaf66912615e9b9b6b0
Author: Rodrigo Rebello (rprebello at gmail.com)
Date: 2013-10-02T13:11:32-07:00

Commit Message:
TSAGE: Fix uninitialized variable.

This was caused by commit 81a2892229a053bb9c76dea4dbfb63ca13164946.

Changed paths:
    engines/tsage/globals.cpp



diff --git a/engines/tsage/globals.cpp b/engines/tsage/globals.cpp
index 9bd7249..ece6ae3 100644
--- a/engines/tsage/globals.cpp
+++ b/engines/tsage/globals.cpp
@@ -541,7 +541,7 @@ void Ringworld2Globals::synchronize(Serializer &s) {
 	s.syncAsSint16LE(_v57C2C);
 	s.syncAsSint16LE(_speechSubtitles);
 
-	byte temp;
+	byte temp = 0;
 	s.syncAsByte(temp);
 	s.syncAsByte(_s1550PlayerArea[R2_QUINN].x);
 	s.syncAsByte(_s1550PlayerArea[R2_SEEKER].x);


Commit: ed3783af4c9dc548674d6631343c4c27b37b051c
    https://github.com/scummvm/scummvm/commit/ed3783af4c9dc548674d6631343c4c27b37b051c
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-10-02T13:57:00-07:00

Commit Message:
Merge pull request #404 from rrebello/tsage_fix

TSAGE: Fix uninitialized variable.

Changed paths:
    engines/tsage/globals.cpp









More information about the Scummvm-git-logs mailing list