[Scummvm-cvs-logs] scummvm master -> 480a059f8357f47a4d5e1304cfa44111399883e9

digitall dgturner at iee.org
Mon Sep 30 05:59:11 CEST 2013


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:
480a059f83 GRAPHICS: Fix uninitialised field in PNG decoder. CID 1002280.


Commit: 480a059f8357f47a4d5e1304cfa44111399883e9
    https://github.com/scummvm/scummvm/commit/480a059f8357f47a4d5e1304cfa44111399883e9
Author: D G Turner (digitall at scummvm.org)
Date: 2013-09-29T21:01:41-07:00

Commit Message:
GRAPHICS: Fix uninitialised field in PNG decoder. CID 1002280.

Changed paths:
    graphics/decoders/png.cpp



diff --git a/graphics/decoders/png.cpp b/graphics/decoders/png.cpp
index 5054752..5acb7b3 100644
--- a/graphics/decoders/png.cpp
+++ b/graphics/decoders/png.cpp
@@ -38,7 +38,7 @@
 
 namespace Graphics {
 
-PNGDecoder::PNGDecoder() : _outputSurface(0), _palette(0), _paletteColorCount(0) {
+PNGDecoder::PNGDecoder() : _outputSurface(0), _palette(0), _paletteColorCount(0), _stream(0) {
 }
 
 PNGDecoder::~PNGDecoder() {






More information about the Scummvm-git-logs mailing list