Chromium Code Reviews| Index: core/src/fxcodec/codec/fx_codec.cpp |
| diff --git a/core/src/fxcodec/codec/fx_codec.cpp b/core/src/fxcodec/codec/fx_codec.cpp |
| index c6b3ccee43c50ab94efd459a13c7aca0189914de..495e6c72d07c78bce829b91f05f871e66369bc5b 100644 |
| --- a/core/src/fxcodec/codec/fx_codec.cpp |
| +++ b/core/src/fxcodec/codec/fx_codec.cpp |
| @@ -1,7 +1,7 @@ |
| // Copyright 2014 PDFium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| - |
| + |
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| #include "../../../include/fxcodec/fx_codec.h" |
| @@ -119,8 +119,7 @@ void CCodec_ScanlineDecoder::DownScale(int dest_width, int dest_height) |
| FX_Free(m_pDataCache); |
| m_pDataCache = NULL; |
| } |
| - m_pDataCache = (CCodec_ImageDataCache*)FXMEM_DefaultAlloc( |
| - sizeof(CCodec_ImageDataCache) + m_Pitch * m_OutputHeight, FXMEM_NONLEAVE); |
| + m_pDataCache = (CCodec_ImageDataCache*)FX_AllocNL(FX_BYTE, sizeof(CCodec_ImageDataCache) + m_Pitch * m_OutputHeight); |
|
palmer
2014/07/07 19:17:53
Potential integer overflow here.
|
| if (m_pDataCache == NULL) { |
| return; |
| } |