Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1f7d3077 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Fix build.

Change-Id: Iaace063eaa65af842effa3e0b481a0629db58e42
parent 681533e0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -685,9 +685,9 @@ static jint android_content_AssetManager_loadResourceValue(JNIEnv* env, jobject
                                                           jobject outValue,
                                                           jboolean resolve)
{
    if (outValue == null) {
    if (outValue == NULL) {
         jniThrowNullPointerException(env, "outValue");
         return null;
         return NULL;
    }
    AssetManager* am = assetManagerForJavaObject(env, clazz);
    if (am == NULL) {