summaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-11-02 23:24:55 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-11-02 23:24:55 (GMT)
commit170cf2d84158a071f8564c3fa65f6fd6afcada44 (patch)
treef566e3c68fea19f136a25bd89fbd3e7b62a8fb69 /src/3rdparty
parent23d20f10cc89dedb21424924ef2654705267ba46 (diff)
downloadQt-170cf2d84158a071f8564c3fa65f6fd6afcada44.zip
Qt-170cf2d84158a071f8564c3fa65f6fd6afcada44.tar.gz
Qt-170cf2d84158a071f8564c3fa65f6fd6afcada44.tar.bz2
Fix crash.
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp
index f8403b7..b6823dd 100644
--- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp
+++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/ImageDecoderQt.cpp
@@ -145,16 +145,8 @@ RGBA32Buffer* ImageDecoderQt::frameBufferAtIndex(size_t index)
return &frame;
}
-void ImageDecoderQt::clearFrameBufferCache(size_t index)
+void ImageDecoderQt::clearFrameBufferCache(size_t /*index*/)
{
- // Currently QImageReader will be asked to read everything. This
- // might change when we read gif images on demand. For now we
- // can have a rather simple implementation.
- if (index > m_frameBufferCache.size())
- return;
-
- for (size_t i = 0; i < index; ++index)
- m_frameBufferCache[index].clear();
}
void ImageDecoderQt::internalDecodeSize()