From 9e16edd0ffb834e87da76fe6b0fe4aef39312685 Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Mon, 9 Jun 2014 16:10:57 -0700 Subject: free, rather than delete, malloc'd object. BUG=381031 Original patch by Chris Palmer Review URL: https://codereview.chromium.org/322453002 --- core/src/fxcodec/jbig2/JBig2_Context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src') diff --git a/core/src/fxcodec/jbig2/JBig2_Context.cpp b/core/src/fxcodec/jbig2/JBig2_Context.cpp index 543f9abf63..83ded6fbe1 100644 --- a/core/src/fxcodec/jbig2/JBig2_Context.cpp +++ b/core/src/fxcodec/jbig2/JBig2_Context.cpp @@ -59,7 +59,7 @@ CJBig2_Context::~CJBig2_Context() } m_pGRD = NULL; if(m_gbContext) { - delete m_gbContext; + m_pModule->JBig2_Free(m_gbContext); } m_gbContext = NULL; if(m_pGlobalContext) { -- cgit v1.2.3