summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-04-16 14:21:25 -0700
committerTom Sepez <tsepez@chromium.org>2015-04-16 14:21:25 -0700
commitcfc1a654ef3e8b65bc447815d35932c185bf1422 (patch)
tree76c58e46dce03348634cdc6bc199a9eead783b0d /core/src/fxcodec/codec/fx_codec_jpx_opj.cpp
parent357d16f8453c2cf0c0afd00eec9e86d03d55fe69 (diff)
downloadpdfium-cfc1a654ef3e8b65bc447815d35932c185bf1422.tar.xz
Replace FX_NEW with new, remote tests from fxcodec
R=thestig@chromium.org Review URL: https://codereview.chromium.org/1084303002
Diffstat (limited to 'core/src/fxcodec/codec/fx_codec_jpx_opj.cpp')
-rw-r--r--core/src/fxcodec/codec/fx_codec_jpx_opj.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp b/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp
index 0f0d2e5e41..3b0490f3c6 100644
--- a/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp
+++ b/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp
@@ -801,10 +801,7 @@ CCodec_JpxModule::CCodec_JpxModule()
}
void* CCodec_JpxModule::CreateDecoder(FX_LPCBYTE src_buf, FX_DWORD src_size , FX_BOOL useColorSpace)
{
- CJPX_Decoder* pDecoder = FX_NEW CJPX_Decoder;
- if (pDecoder == NULL) {
- return NULL;
- }
+ CJPX_Decoder* pDecoder = new CJPX_Decoder;
pDecoder->m_useColorSpace = useColorSpace;
if (!pDecoder->Init(src_buf, src_size)) {
delete pDecoder;