Browse Source

Android: Added check if Java method for APK expansion file exists.

Philipp Wiesemann 9 years ago
parent
commit
efad04c317
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/core/android/SDL_android.c

+ 4 - 0
src/core/android/SDL_android.c

@@ -788,6 +788,10 @@ fallback:
             /* Try fallback to APK expansion files */
             mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, context),
                 "openAPKExpansionInputStream", "(Ljava/lang/String;)Ljava/io/InputStream;");
+            if (!mid) {
+                SDL_SetError("No openAPKExpansionInputStream() in Java class");
+                goto failure; /* Java class is missing the required method */
+            }
             inputStream = (*mEnv)->CallObjectMethod(mEnv, context, mid, fileNameJString);
 
             /* Exception is checked first because it always needs to be cleared.