aboutsummaryrefslogtreecommitdiff
path: root/graphics/video/qt_decoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/video/qt_decoder.cpp')
-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;
}