aboutsummaryrefslogtreecommitdiff
path: root/graphics/video
diff options
context:
space:
mode:
authorTorbjörn Andersson2010-06-17 05:40:48 +0000
committerTorbjörn Andersson2010-06-17 05:40:48 +0000
commitf10b1a23f807d7889a2776ce80ea8b7a77160eb5 (patch)
tree532d03db6fb7108db69e9d8450ba13c367a960b4 /graphics/video
parent39276e82dbebf55e68ecc298cbeef01133fb0bf8 (diff)
downloadscummvm-rg350-f10b1a23f807d7889a2776ce80ea8b7a77160eb5.tar.gz
scummvm-rg350-f10b1a23f807d7889a2776ce80ea8b7a77160eb5.tar.bz2
scummvm-rg350-f10b1a23f807d7889a2776ce80ea8b7a77160eb5.zip
Fixed a few cppcheck errors.
svn-id: r49919
Diffstat (limited to 'graphics/video')
-rw-r--r--graphics/video/qt_decoder.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/graphics/video/qt_decoder.cpp b/graphics/video/qt_decoder.cpp
index 842c38f315..a95243ba6a 100644
--- a/graphics/video/qt_decoder.cpp
+++ b/graphics/video/qt_decoder.cpp
@@ -536,6 +536,8 @@ int QuickTimeDecoder::readCMOV(MOVatom atom) {
unsigned long dstLen = uncompressedSize;
if (!Common::uncompress(uncompressedData, &dstLen, compressedData, compressedSize)) {
warning ("Could not uncompress cmov chunk");
+ free(compressedData);
+ free(uncompressedData);
return -1;
}