| Index: third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
|
| diff --git a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
|
| index c8afd7888b27dc9f706a9cfd24910f099de331e5..54c2bbcba135ed04c258436063f9999a6824a54d 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
|
| @@ -359,7 +359,7 @@ void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, unsigned rowIndex,
|
|
|
| // Initialize the framebuffer if needed.
|
| ImageFrame& buffer = m_frameBufferCache[0];
|
| - if (buffer.status() == ImageFrame::FrameEmpty) {
|
| + if (buffer.getStatus() == ImageFrame::FrameEmpty) {
|
| png_structp png = m_reader->pngPtr();
|
| if (!buffer.setSize(size().width(), size().height())) {
|
| longjmp(JMPBUF(png), 1);
|
|
|