summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/jbig2/JBig2_PatternDict.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/fxcodec/jbig2/JBig2_PatternDict.cpp')
-rw-r--r--core/src/fxcodec/jbig2/JBig2_PatternDict.cpp5
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);
}
}