diff --git a/xwords4/android/jni/xwjni.c b/xwords4/android/jni/xwjni.c index 17213b630..84ea1ce71 100644 --- a/xwords4/android/jni/xwjni.c +++ b/xwords4/android/jni/xwjni.c @@ -95,7 +95,11 @@ getMPoolImpl( JNIGlobalState* globalState, const char* user ) static void releaseMPool( JNIGlobalState* globalState ) { - XP_ASSERT( globalState->mpoolInUse ); + // XP_ASSERT( globalState->mpoolInUse ); /* fired again!!! */ + if ( !globalState->mpoolInUse ) { + XP_LOGF( "%s() line %d; ERROR ERROR ERROR mpoolInUse not set", + __func__, __LINE__ ); + } globalState->mpoolInUse = XP_FALSE; } #else