diff options
author | Lei Zhang <thestig@chromium.org> | 2015-09-03 16:03:42 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-09-03 16:03:42 -0700 |
commit | 800bf5ac07305ccf9c9522c8c76f728a4fd99da5 (patch) | |
tree | 9adfb205c88e1e074e955d7731850d36594011e1 /core/src/fxcodec/jbig2/JBig2_PatternDict.cpp | |
parent | 640c395fa9b76552383ccd0c5f4668ea698089f6 (diff) | |
download | pdfium-800bf5ac07305ccf9c9522c8c76f728a4fd99da5.tar.xz |
Make a bunch of JBig2 classes independent of CJBig2_Object.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1319713003 .
Diffstat (limited to 'core/src/fxcodec/jbig2/JBig2_PatternDict.cpp')
-rw-r--r-- | core/src/fxcodec/jbig2/JBig2_PatternDict.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/src/fxcodec/jbig2/JBig2_PatternDict.cpp b/core/src/fxcodec/jbig2/JBig2_PatternDict.cpp index 3469c36847..21f6d64182 100644 --- a/core/src/fxcodec/jbig2/JBig2_PatternDict.cpp +++ b/core/src/fxcodec/jbig2/JBig2_PatternDict.cpp @@ -5,6 +5,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #include "JBig2_PatternDict.h" + +#include "../../../include/fxcrt/fx_memory.h" + CJBig2_PatternDict::CJBig2_PatternDict() { NUMPATS = 0; HDPATS = NULL; @@ -15,6 +18,6 @@ CJBig2_PatternDict::~CJBig2_PatternDict() { for (FX_DWORD i = 0; i < NUMPATS; i++) { delete HDPATS[i]; } - m_pModule->JBig2_Free(HDPATS); + FX_Free(HDPATS); } } |