summaryrefslogtreecommitdiff
path: root/pcre_jit_compile.c
diff options
context:
space:
mode:
authorzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2015-03-06 07:44:16 +0000
committerzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2015-03-06 07:44:16 +0000
commit08025021c3fe75fae0d3a667aefd11dbace5f151 (patch)
tree18488b224614cfded19b077d2d5911f9f4e52b9c /pcre_jit_compile.c
parent3831a81914cf11565bf429dd019c9442b404bc5f (diff)
downloadpcre-08025021c3fe75fae0d3a667aefd11dbace5f151.tar.gz
Minor JIT compiler update.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1531 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_jit_compile.c')
-rw-r--r--pcre_jit_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcre_jit_compile.c b/pcre_jit_compile.c
index 46ce097..b1f75b2 100644
--- a/pcre_jit_compile.c
+++ b/pcre_jit_compile.c
@@ -2108,7 +2108,7 @@ sljit_uw *result;
if (SLJIT_UNLIKELY(sljit_get_compiler_error(compiler)))
return NULL;
-result = (sljit_uw *)SLJIT_MALLOC(size + sizeof(sljit_uw), common->allocator_data);
+result = (sljit_uw *)SLJIT_MALLOC(size + sizeof(sljit_uw), compiler->allocator_data);
if (SLJIT_UNLIKELY(result == NULL))
{
sljit_set_compiler_memory_error(compiler);