| Index: core/src/fxcodec/codec/fx_codec_jpeg.cpp
|
| diff --git a/core/src/fxcodec/codec/fx_codec_jpeg.cpp b/core/src/fxcodec/codec/fx_codec_jpeg.cpp
|
| index 681678c264b5850f5f4da76965d7dcffeedc4cce..f296532131c9f24eadf77ddd10241ca6cace5437 100644
|
| --- a/core/src/fxcodec/codec/fx_codec_jpeg.cpp
|
| +++ b/core/src/fxcodec/codec/fx_codec_jpeg.cpp
|
| @@ -221,9 +221,7 @@ static void _JpegEncode(const CFX_DIBSource* pSource,
|
| }
|
| jpeg_finish_compress(&cinfo);
|
| jpeg_destroy_compress(&cinfo);
|
| - if (line_buf) {
|
| FX_Free(line_buf);
|
| - }
|
| dest_size = dest_buf_length - (FX_STRSIZE)dest.free_in_buffer;
|
| }
|
| static FX_BOOL _JpegLoadInfo(const uint8_t* src_buf,
|
| @@ -335,9 +333,7 @@ CCodec_JpegDecoder::~CCodec_JpegDecoder() {
|
| m_pExtProvider->DestroyDecoder(m_pExtContext);
|
| return;
|
| }
|
| - if (m_pScanlineBuf) {
|
| FX_Free(m_pScanlineBuf);
|
| - }
|
| if (m_bInited) {
|
| jpeg_destroy_decompress(&cinfo);
|
| }
|
|
|