Merge "Fix the use of pdfium" into rvc-dev-plus-aosp am: 0a29672a3b am: c7da556de4

Change-Id: I3cc44db8afbe0eb4e2d7e83197e43d79bda4ecd7
This commit is contained in:
Haibo Huang
2020-04-29 18:53:21 +00:00
committed by Automerger Merge Worker

View File

@@ -110,7 +110,7 @@ static void nativeSetTransformAndClip(JNIEnv* env, jclass thiz, jlong documentPt
jlong transformPtr, jint clipLeft, jint clipTop, jint clipRight, jint clipBottom) {
FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr);
FPDF_PAGE* page = (FPDF_PAGE*) FPDF_LoadPage(document, pageIndex);
FPDF_PAGE page = FPDF_LoadPage(document, pageIndex);
if (!page) {
jniThrowException(env, "java/lang/IllegalStateException",
"cannot open page");