diff options
author | Travis Howell | 2006-04-22 05:48:40 +0000 |
---|---|---|
committer | Travis Howell | 2006-04-22 05:48:40 +0000 |
commit | 30b4b87f587283218eb19865633ce8a659fdd392 (patch) | |
tree | 5e8e9a9c956c09f2a96f121abae6f579a1cbe7ed | |
parent | 77497d5ed95d8f7015fb4caffa396a381a3c8869 (diff) | |
download | scummvm-rg350-30b4b87f587283218eb19865633ce8a659fdd392.tar.gz scummvm-rg350-30b4b87f587283218eb19865633ce8a659fdd392.tar.bz2 scummvm-rg350-30b4b87f587283218eb19865633ce8a659fdd392.zip |
Fix valgrind warning
svn-id: r22082
-rw-r--r-- | sound/adpcm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/adpcm.cpp b/sound/adpcm.cpp index d2e1e72aed..5d213842e6 100644 --- a/sound/adpcm.cpp +++ b/sound/adpcm.cpp @@ -92,6 +92,7 @@ ADPCMInputStream::ADPCMInputStream(Common::SeekableReadStream *stream, uint32 si _status.last = 0; _status.stepIndex = 0; + memset(_status.ch, 0, sizeof(_status.ch)); _endpos = stream->pos() + size; _blockPos = _blockLen = 0; |