diff options
| author | Torbjörn Andersson | 2010-06-17 05:40:48 +0000 |
|---|---|---|
| committer | Torbjörn Andersson | 2010-06-17 05:40:48 +0000 |
| commit | f10b1a23f807d7889a2776ce80ea8b7a77160eb5 (patch) | |
| tree | 532d03db6fb7108db69e9d8450ba13c367a960b4 /graphics | |
| parent | 39276e82dbebf55e68ecc298cbeef01133fb0bf8 (diff) | |
| download | scummvm-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')
| -rw-r--r-- | graphics/video/qt_decoder.cpp | 2 |
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; } |
