diff options
author | Michael Vrhel <michael.vrhel@artifex.com> | 2010-04-30 20:11:08 +0000 |
---|---|---|
committer | Michael Vrhel <michael.vrhel@artifex.com> | 2010-04-30 20:11:08 +0000 |
commit | 7bcdb47af54246e101af0b1e6319c679d68970e1 (patch) | |
tree | b45775d33f3d0618fff737d96384920a4e0e6ac8 /gs/base/gsalloc.c | |
parent | 104ece1ace3d95c5458fcd0d1e787157e62107b7 (diff) |
Merge of trunk into branch through 11159
git-svn-id: http://svn.ghostscript.com/ghostscript/branches/icc_work@11160 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/base/gsalloc.c')
-rw-r--r-- | gs/base/gsalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gs/base/gsalloc.c b/gs/base/gsalloc.c index 34958d736..94ac00332 100644 --- a/gs/base/gsalloc.c +++ b/gs/base/gsalloc.c @@ -61,7 +61,7 @@ alloc_trace(const char *chars, gs_ref_memory_t * imem, client_name_t cname, static bool alloc_size_is_ok(gs_memory_type_ptr_t stype) { - return (stype->ssize > 0 && stype->ssize < 0x100000); + return (stype->ssize > 0 && stype->ssize < 0x200000); } # define ALLOC_CHECK_SIZE(stype)\ BEGIN\ |