summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/codec/fx_codec_jpeg.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-09-11 13:13:31 -0700
committerLei Zhang <thestig@chromium.org>2015-09-11 13:13:31 -0700
commit6aca3e209ff6148f1d77b86b8b97d3bdf18e3eba (patch)
tree280c27ff9c75ded60b562f246973e8335e3b3b02 /core/src/fxcodec/codec/fx_codec_jpeg.cpp
parentf9e40aec10263f9445d69598657f42550294d653 (diff)
downloadpdfium-6aca3e209ff6148f1d77b86b8b97d3bdf18e3eba.tar.xz
Cleanup casting of FX_Alloc() return values.
Also convert some FX_AllocOrDie() calls to FX_Alloc(). R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1332173002 .
Diffstat (limited to 'core/src/fxcodec/codec/fx_codec_jpeg.cpp')
-rw-r--r--core/src/fxcodec/codec/fx_codec_jpeg.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/src/fxcodec/codec/fx_codec_jpeg.cpp b/core/src/fxcodec/codec/fx_codec_jpeg.cpp
index 7e95bd358f..efd83f88ae 100644
--- a/core/src/fxcodec/codec/fx_codec_jpeg.cpp
+++ b/core/src/fxcodec/codec/fx_codec_jpeg.cpp
@@ -601,8 +601,7 @@ void* CCodec_JpegModule::Start() {
if (m_pExtProvider) {
return m_pExtProvider->Start();
}
- FXJPEG_Context* p =
- (FXJPEG_Context*)FX_Alloc(uint8_t, sizeof(FXJPEG_Context));
+ FXJPEG_Context* p = FX_Alloc(FXJPEG_Context, 1);
p->m_AllocFunc = jpeg_alloc_func;
p->m_FreeFunc = jpeg_free_func;
p->m_ErrMgr.error_exit = _error_fatal1;