Index: third_party/WebKit/Source/platform/graphics/FrameData.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/FrameData.cpp b/third_party/WebKit/Source/platform/graphics/FrameData.cpp |
index b510aa935bccb53d3144cc6f4a3e9a5ac7cb0e2e..cfe4dfc4a49df02c08efba4d71e82df8b24d708c 100644 |
--- a/third_party/WebKit/Source/platform/graphics/FrameData.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/FrameData.cpp |
@@ -51,11 +51,12 @@ bool FrameData::clear(bool clearMetadata) |
m_orientation = DefaultImageOrientation; |
m_frameBytes = 0; |
- if (m_frame) { |
- m_frame.clear(); |
- return true; |
- } |
- return false; |
+ if (!m_frame) |
+ return false; |
+ |
+ m_cache.clear(); |
+ m_frame.clear(); |
+ return true; |
} |
} // namespace blink |