diff --git a/src/core/android/SDL_android.c b/src/core/android/SDL_android.c index 6f9db679e2..e1e18c3cad 100644 --- a/src/core/android/SDL_android.c +++ b/src/core/android/SDL_android.c @@ -1525,7 +1525,8 @@ JNIEXPORT void JNICALL SDL_JAVA_INTERFACE(nativeSetenv)( const char *utfvalue = (*env)->GetStringUTFChars(env, value, NULL); // This is only called at startup, to initialize the environment - SDL_setenv_unsafe(utfname, utfvalue, 1); + // Note that we call setenv() directly to avoid affecting SDL environments + setenv(utfname, utfvalue, 1); (*env)->ReleaseStringUTFChars(env, name, utfname); (*env)->ReleaseStringUTFChars(env, value, utfvalue); diff --git a/src/stdlib/SDL_getenv.c b/src/stdlib/SDL_getenv.c index a02112bd71..6b691e3df1 100644 --- a/src/stdlib/SDL_getenv.c +++ b/src/stdlib/SDL_getenv.c @@ -122,12 +122,7 @@ SDL_Environment *SDL_CreateEnvironment(bool populated) #else #ifdef SDL_PLATFORM_ANDROID // Make sure variables from the application manifest are available - static bool initializing; - if (!initializing) { - initializing = true; - Android_JNI_GetManifestEnvironmentVariables(); - initializing = false; - } + Android_JNI_GetManifestEnvironmentVariables(); #endif char **strings = environ; if (strings) {