summaryrefslogtreecommitdiff
path: root/apps/pdfshow.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2012-01-11 22:22:06 +0100
committerTor Andersson <tor.andersson@artifex.com>2012-01-11 22:30:59 +0100
commitbe1ed0692b49bc86ce512edc837fefc601d42443 (patch)
tree4850dc9af836113aacbe27f30b10e2e03beec9fb /apps/pdfshow.c
parent0e72a704c45d58faa75fa61a87f07c6f2207cd47 (diff)
downloadmupdf-be1ed0692b49bc86ce512edc837fefc601d42443.tar.xz
Set default values for alloc context and max store size if none are given.
Diffstat (limited to 'apps/pdfshow.c')
-rw-r--r--apps/pdfshow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/pdfshow.c b/apps/pdfshow.c
index 300da9ca..ec2fedbd 100644
--- a/apps/pdfshow.c
+++ b/apps/pdfshow.c
@@ -198,7 +198,7 @@ int main(int argc, char **argv)
filename = argv[fz_optind++];
- ctx = fz_new_context(&fz_alloc_default, 256<<20);
+ ctx = fz_new_context(NULL, 0);
if (!ctx)
{
fprintf(stderr, "cannot initialise context\n");