From 3fff26e653b7c90e884fae449337766d3c2a309a Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Thu, 9 Feb 2012 10:11:52 +0000 Subject: Update ios and Android projects with locking changes. I forgot to update Android and iOS projects with the extra arg to fz_new_context. Fixed here. --- android/jni/mupdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'android') diff --git a/android/jni/mupdf.c b/android/jni/mupdf.c index 8541dbfe..a1a82ca8 100644 --- a/android/jni/mupdf.c +++ b/android/jni/mupdf.c @@ -49,7 +49,7 @@ Java_com_artifex_mupdf_MuPDFCore_openFile(JNIEnv * env, jobject thiz, jstring jf fz_accelerate(); /* 128 MB store for low memory devices. Tweak as necessary. */ - ctx = fz_new_context(NULL, 128 << 20); + ctx = fz_new_context(NULL, NULL, 128 << 20); if (!ctx) { LOGE("Failed to initialise context"); -- cgit v1.2.3